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