Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_PERIODIC_METRICS_RECORDER_H_ | |
| 6 #define ASH_PERIODIC_METRICS_RECORDER_H_ | |
| 7 | |
| 8 #include "base/timer/timer.h" | |
| 9 | |
| 10 namespace ash { | |
| 11 | |
| 12 class AshPeriodicMetricsRecorder { | |
|
James Cook
2013/11/01 05:06:28
Just call it PeriodicMetricsRecorder since it is a
| |
| 13 public: | |
| 14 AshPeriodicMetricsRecorder(); | |
| 15 ~AshPeriodicMetricsRecorder(); | |
| 16 | |
| 17 private: | |
| 18 void RecordMetrics(); | |
| 19 | |
| 20 base::RepeatingTimer<AshPeriodicMetricsRecorder> timer_; | |
| 21 }; | |
| 22 | |
| 23 } // namespace ash | |
| 24 | |
| 25 #endif // ASH_PERIODIC_METRICS_RECORDER_H_ | |
| OLD | NEW |