| Index: ash/wm/overview/window_selector.h
|
| diff --git a/ash/wm/overview/window_selector.h b/ash/wm/overview/window_selector.h
|
| index d6c85195ca1e66a59954c189483fa87222f0e6f3..f9ca51a64db03108ec88014ad5d1e8155fdc5d27 100644
|
| --- a/ash/wm/overview/window_selector.h
|
| +++ b/ash/wm/overview/window_selector.h
|
| @@ -124,9 +124,6 @@ class ASH_EXPORT WindowSelector
|
| // List of all the window overview grids, one for each root window.
|
| ScopedVector<WindowGrid> grid_list_;
|
|
|
| - // The time when overview was started.
|
| - base::Time overview_start_time_;
|
| -
|
| // Tracks windows which were hidden because they were not part of the
|
| // overview.
|
| aura::WindowTracker hidden_windows_;
|
| @@ -134,6 +131,17 @@ class ASH_EXPORT WindowSelector
|
| // Tracks the index of the root window the selection widget is in.
|
| size_t selected_grid_index_;
|
|
|
| + // The following variables are used for metric collection purposes. All of
|
| + // them refer to this particular overview session and are not cumulative:
|
| + // The time when overview was started.
|
| + base::Time overview_start_time_;
|
| +
|
| + // The number of arrow key presses.
|
| + size_t num_key_presses_;
|
| +
|
| + // The number of items in the overview.
|
| + size_t num_items_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WindowSelector);
|
| };
|
|
|
|
|