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

Side by Side Diff: components/metrics/metrics_service_observer.h

Issue 502173002: Move more metrics classes to metrics namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit test compile. Created 6 years, 3 months 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
« no previous file with comments | « components/metrics/metrics_service.cc ('k') | components/metrics/metrics_service_observer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_ 5 #ifndef COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_
6 #define COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_ 6 #define COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 9
10 namespace metrics {
11
10 // MetricsServiceObserver receives notifications from MetricsService. 12 // MetricsServiceObserver receives notifications from MetricsService.
11 // An observer must be added, removed, and notified on the same thread. 13 // An observer must be added, removed, and notified on the same thread.
12 class MetricsServiceObserver { 14 class MetricsServiceObserver {
13 public: 15 public:
14 // Called when a new MetricsLog is created. 16 // Called when a new MetricsLog is created.
15 virtual void OnDidCreateMetricsLog() = 0; 17 virtual void OnDidCreateMetricsLog() = 0;
16 18
17 protected: 19 protected:
18 MetricsServiceObserver(); 20 MetricsServiceObserver();
19 virtual ~MetricsServiceObserver(); 21 virtual ~MetricsServiceObserver();
20 22
21 private: 23 private:
22 DISALLOW_COPY_AND_ASSIGN(MetricsServiceObserver); 24 DISALLOW_COPY_AND_ASSIGN(MetricsServiceObserver);
23 }; 25 };
24 26
27 } // namespace metrics
28
25 #endif // COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_ 29 #endif // COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_
OLDNEW
« no previous file with comments | « components/metrics/metrics_service.cc ('k') | components/metrics/metrics_service_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698