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

Side by Side Diff: ash/periodic_metrics_recorder.h

Issue 26373009: ash:Shelf - Added UMA stats for ShelfAlignment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits & things Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(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_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/periodic_metrics_recorder.cc » ('j') | ash/shelf/shelf_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698