diff options
Diffstat (limited to 'ash/wm/overview/window_selector.h')
-rw-r--r-- | ash/wm/overview/window_selector.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ash/wm/overview/window_selector.h b/ash/wm/overview/window_selector.h index d6c8519..f9ca51a 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); }; |