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_ASH_PERIODIC_METRICS_RECORDER_H | |
|
James Cook
2013/11/01 00:28:51
nit: end with trailing _
Harry McCleave
2013/11/01 01:00:38
Done.
| |
| 6 #define ASH_ASH_PERIODIC_METRICS_RECORDER_H | |
| 7 | |
| 8 #include "base/timer/timer.h" | |
| 9 | |
| 10 namespace ash { | |
| 11 | |
| 12 class AshPeriodicMetricsRecorder { | |
| 13 public: | |
| 14 AshPeriodicMetricsRecorder(); | |
| 15 ~AshPeriodicMetricsRecorder(); | |
| 16 | |
| 17 private: | |
| 18 void RecordMetrics(); | |
| 19 | |
| 20 base::RepeatingTimer<AshPeriodicMetricsRecorder> timer_; | |
| 21 }; | |
| 22 | |
| 23 } // ash | |
|
James Cook
2013/11/01 00:28:51
nit: "namespace ash"
Harry McCleave
2013/11/01 01:00:38
Done.
| |
| 24 | |
| 25 #endif // ASH_ASH_PERIODIC_METRICS_RECORDER_H | |
| OLD | NEW |