.. | .. |
---|
5 | 5 | #include "ui/browser.h" |
---|
6 | 6 | |
---|
7 | 7 | struct annotation_options; |
---|
| 8 | +struct evsel; |
---|
8 | 9 | |
---|
9 | 10 | struct hist_browser { |
---|
10 | 11 | struct ui_browser b; |
---|
.. | .. |
---|
15 | 16 | struct pstack *pstack; |
---|
16 | 17 | struct perf_env *env; |
---|
17 | 18 | struct annotation_options *annotation_opts; |
---|
| 19 | + struct evsel *block_evsel; |
---|
18 | 20 | int print_seq; |
---|
19 | 21 | bool show_dso; |
---|
20 | 22 | bool show_headers; |
---|
.. | .. |
---|
32 | 34 | struct hist_browser *hist_browser__new(struct hists *hists); |
---|
33 | 35 | void hist_browser__delete(struct hist_browser *browser); |
---|
34 | 36 | int hist_browser__run(struct hist_browser *browser, const char *help, |
---|
35 | | - bool warn_lost_event); |
---|
| 37 | + bool warn_lost_event, int key); |
---|
36 | 38 | void hist_browser__init(struct hist_browser *browser, |
---|
37 | 39 | struct hists *hists); |
---|
38 | 40 | #endif /* _PERF_UI_BROWSER_HISTS_H_ */ |
---|