Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: ash/metrics/task_switch_metrics_recorder.h

Issue 1148723006: Added Ash.TimeBetweenTaskSwitches to record time deltas between all recorded task switches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated TaskSwitchMetricsRecorder documentation as per tdanderson@'s requests. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/metrics/task_switch_metrics_recorder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_ 5 #ifndef ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_
6 #define ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_ 6 #define ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
11 #include "base/containers/scoped_ptr_hash_map.h" 11 #include "base/containers/scoped_ptr_hash_map.h"
12 12
13 namespace ash { 13 namespace ash {
14 14
15 class TaskSwitchTimeTracker; 15 class TaskSwitchTimeTracker;
16 16
17 // The TaskSwitchMetricsRecorder class records UMA metrics related to task 17 // The TaskSwitchMetricsRecorder class records UMA metrics related to task
18 // switching. The main purpose of the TaskSwitchMetricsRecorder is to track time 18 // switching. The main purpose of the TaskSwitchMetricsRecorder is to track time
19 // deltas between task switches and record histograms of the deltas. 19 // deltas between task switches and record histograms of the deltas.
20 class ASH_EXPORT TaskSwitchMetricsRecorder { 20 class ASH_EXPORT TaskSwitchMetricsRecorder {
21 public: 21 public:
22 // Enumeration of the different user interfaces that could be the source of 22 // Enumeration of the different user interfaces that could be the source of
23 // a task switch. Note this is not necessarily comprehensive of all sources. 23 // a task switch. Note this is not necessarily comprehensive of all sources.
24 enum TaskSwitchSource { 24 enum TaskSwitchSource {
25 // Task switches caused by any two sources in this enum. NOTE: This value
26 // should NOT be used outside of this class.
27 kAny,
25 // Task switches from selecting items in the app list. 28 // Task switches from selecting items in the app list.
26 kAppList, 29 kAppList,
27 // Task switches caused by selecting a window from overview mode which is 30 // Task switches caused by selecting a window from overview mode which is
28 // different from the previously-active window. 31 // different from the previously-active window.
29 kOverviewMode, 32 kOverviewMode,
30 // All task switches caused by shelf buttons, not including sub-menus. 33 // All task switches caused by shelf buttons, not including sub-menus.
31 kShelf, 34 kShelf,
32 // All task switches caused by the tab strip. 35 // All task switches caused by the tab strip.
33 kTabStrip, 36 kTabStrip,
34 // Task switches caused by the WindowCycleController (ie Alt+Tab). 37 // Task switches caused by the WindowCycleController (ie Alt+Tab).
35 kWindowCycleController 38 kWindowCycleController
36 }; 39 };
37 40
38 TaskSwitchMetricsRecorder(); 41 TaskSwitchMetricsRecorder();
39 virtual ~TaskSwitchMetricsRecorder(); 42 virtual ~TaskSwitchMetricsRecorder();
40 43
41 // Notifies |this| that a "navigate to" task switch has occurred. A 44 // Notifies |this| that a "navigate to" task switch has occurred from the
42 // "navigate to" operation is defined by a task switch where the specific task 45 // specified |task_switch_source|. The metrics associated with
43 // that becomes active is user-predictable (ie Alt+Tab accelerator, launching 46 // TaskSwitchSource::kAny source will be updated as well.
44 // a new window via the shelf, etc). Contrast to a "navigate away" operation 47 //
45 // which is defined as a user interaction that navigates away from a specified 48 // NOTE: A |task_switch_source| value of TaskSwitchSource::kAny should not be
46 // task and the next task that becomes active is likely not user-predictable 49 // used and behavior is undefined if it is.
47 // (ie. closing or minimizing a window, closing a tab, etc). 50 //
51 // A "navigate to" operation is defined by a task switch where the specific
52 // task that becomes active is user-predictable (ie Alt+Tab accelerator,
tdanderson 2015/06/04 21:59:39 micro-nit: ie -> e.g., here and at line 56.
53 // launching a new window via the shelf, etc). Contrast to a "navigate away"
54 // operation which is defined as a user interaction that navigates away from a
55 // specified task and the next task that becomes active is likely not
56 // user-predictable (ie. closing or minimizing a window, closing a tab, etc).
48 // 57 //
49 // Will add an entry to |histogram_map_| when called for the first time for 58 // Will add an entry to |histogram_map_| when called for the first time for
50 // each |task_switch_source| value. 59 // each |task_switch_source| value.
51 void OnTaskSwitch(TaskSwitchSource task_switch_source); 60 void OnTaskSwitch(TaskSwitchSource task_switch_source);
52 61
53 private: 62 private:
63 // Internal implementation of OnTaskSwitch(TaskSwitchSource) that will accept
64 // the TaskSwitchSource::kAny value.
65 void OnTaskSwitchInternal(TaskSwitchSource task_switch_source);
66
54 // Returns the TaskSwitchTimeTracker associated with the specified 67 // Returns the TaskSwitchTimeTracker associated with the specified
55 // |task_switch_source|. May return nullptr if mapping does not exist yet. 68 // |task_switch_source|. May return nullptr if mapping does not exist yet.
56 TaskSwitchTimeTracker* FindTaskSwitchTimeTracker( 69 TaskSwitchTimeTracker* FindTaskSwitchTimeTracker(
57 TaskSwitchSource task_switch_source); 70 TaskSwitchSource task_switch_source);
58 71
59 // Adds a TaskSwitchTimeTracker to |histogram_map_| for the specified 72 // Adds a TaskSwitchTimeTracker to |histogram_map_| for the specified
60 // |task_switch_source|. Behavior is undefined if a TaskSwitchTimeTracker 73 // |task_switch_source|. Behavior is undefined if a TaskSwitchTimeTracker
61 // |histogram_map_| already has an entry for |task_switch_source|. 74 // |histogram_map_| already has an entry for |task_switch_source|.
62 void AddTaskSwitchTimeTracker(TaskSwitchSource task_switch_source); 75 void AddTaskSwitchTimeTracker(TaskSwitchSource task_switch_source);
63 76
64 // Tracks TaskSwitchSource to TaskSwitchTimeTracker mappings. The 77 // Tracks TaskSwitchSource to TaskSwitchTimeTracker mappings. The
65 // |histogram_map_| is populated on demand the first time a 78 // |histogram_map_| is populated on demand the first time a
66 // TaskSwitchTimeTracker is needed for a given source. 79 // TaskSwitchTimeTracker is needed for a given source.
67 base::ScopedPtrHashMap<int, scoped_ptr<TaskSwitchTimeTracker>> histogram_map_; 80 base::ScopedPtrHashMap<int, scoped_ptr<TaskSwitchTimeTracker>> histogram_map_;
68 81
69 DISALLOW_COPY_AND_ASSIGN(TaskSwitchMetricsRecorder); 82 DISALLOW_COPY_AND_ASSIGN(TaskSwitchMetricsRecorder);
70 }; 83 };
71 84
72 } // namespace ash 85 } // namespace ash
73 86
74 #endif // ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_ 87 #endif // ASH_METRICS_TASK_SWITCH_METRIC_RECORDER_H_
OLDNEW
« no previous file with comments | « no previous file | ash/metrics/task_switch_metrics_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698