| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_USER_METRICS_RECORDER_H_ | 5 #ifndef ASH_METRICS_USER_METRICS_RECORDER_H_ |
| 6 #define ASH_METRICS_USER_METRICS_RECORDER_H_ | 6 #define ASH_METRICS_USER_METRICS_RECORDER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/metrics/task_switch_metrics_recorder.h" | 9 #include "ash/metrics/task_switch_metrics_recorder.h" |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
| 12 | 13 |
| 13 namespace ash { | 14 namespace ash { |
| 14 | 15 |
| 15 class DesktopTaskSwitchMetricRecorder; | 16 class DesktopTaskSwitchMetricRecorder; |
| 16 | 17 |
| 17 namespace test { | 18 namespace test { |
| 18 class UserMetricsRecorderTestAPI; | 19 class UserMetricsRecorderTestAPI; |
| 19 } | 20 } |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 // clicks or touchscreen taps. | 195 // clicks or touchscreen taps. |
| 195 scoped_ptr<DesktopTaskSwitchMetricRecorder> | 196 scoped_ptr<DesktopTaskSwitchMetricRecorder> |
| 196 desktop_task_switch_metric_recorder_; | 197 desktop_task_switch_metric_recorder_; |
| 197 | 198 |
| 198 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder); | 199 DISALLOW_COPY_AND_ASSIGN(UserMetricsRecorder); |
| 199 }; | 200 }; |
| 200 | 201 |
| 201 } // namespace ash | 202 } // namespace ash |
| 202 | 203 |
| 203 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_ | 204 #endif // ASH_METRICS_USER_METRICS_RECORDER_H_ |
| OLD | NEW |