Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / components / metrics / metrics_service_observer.h
bloba0efb8475a06965eab71236d13ab2cc9c4df18bf
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_
6 #define COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_
8 #include "base/macros.h"
10 namespace metrics {
12 // MetricsServiceObserver receives notifications from MetricsService.
13 // An observer must be added, removed, and notified on the same thread.
14 class MetricsServiceObserver {
15 public:
16 // Called when a new MetricsLog is created.
17 virtual void OnDidCreateMetricsLog() = 0;
19 protected:
20 MetricsServiceObserver();
21 virtual ~MetricsServiceObserver();
23 private:
24 DISALLOW_COPY_AND_ASSIGN(MetricsServiceObserver);
27 } // namespace metrics
29 #endif // COMPONENTS_METRICS_METRICS_SERVICE_OBSERVER_H_