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

Side by Side Diff: ash/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: copywrite header 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_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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698