OLD | NEW |
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 CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ | 5 #ifndef CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ |
6 #define CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ | 6 #define CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "base/callback_forward.h" |
10 #include "base/macros.h" | 11 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/sequenced_task_runner_helpers.h" |
12 | 14 |
13 namespace metrics { | 15 namespace metrics { |
14 class MetricSample; | 16 class MetricSample; |
15 } // namespace metrics | 17 } // namespace metrics |
16 | 18 |
17 namespace chromecast { | 19 namespace chromecast { |
18 namespace metrics { | 20 namespace metrics { |
19 | 21 |
20 class CastStabilityMetricsProvider; | 22 class CastStabilityMetricsProvider; |
21 | 23 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 70 |
69 base::WeakPtrFactory<ExternalMetrics> weak_factory_; | 71 base::WeakPtrFactory<ExternalMetrics> weak_factory_; |
70 | 72 |
71 DISALLOW_COPY_AND_ASSIGN(ExternalMetrics); | 73 DISALLOW_COPY_AND_ASSIGN(ExternalMetrics); |
72 }; | 74 }; |
73 | 75 |
74 } // namespace metrics | 76 } // namespace metrics |
75 } // namespace chromecast | 77 } // namespace chromecast |
76 | 78 |
77 #endif // CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ | 79 #endif // CHROMECAST_BROWSER_METRICS_EXTERNAL_METRICS_H_ |
OLD | NEW |