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 #include "components/metrics/metrics_provider.h" | 5 #include "components/metrics/metrics_provider.h" |
6 | 6 |
7 namespace metrics { | 7 namespace metrics { |
8 | 8 |
9 MetricsProvider::MetricsProvider() { | 9 MetricsProvider::MetricsProvider() { |
10 } | 10 } |
(...skipping 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 | 27 |
28 bool MetricsProvider::HasStabilityMetrics() { | 28 bool MetricsProvider::HasStabilityMetrics() { |
29 return false; | 29 return false; |
30 } | 30 } |
31 | 31 |
32 void MetricsProvider::ProvideStabilityMetrics( | 32 void MetricsProvider::ProvideStabilityMetrics( |
33 SystemProfileProto* system_profile_proto) { | 33 SystemProfileProto* system_profile_proto) { |
34 } | 34 } |
35 | 35 |
| 36 void MetricsProvider::ClearSavedStabilityMetrics() { |
| 37 } |
| 38 |
36 void MetricsProvider::ProvideGeneralMetrics( | 39 void MetricsProvider::ProvideGeneralMetrics( |
37 ChromeUserMetricsExtension* uma_proto) { | 40 ChromeUserMetricsExtension* uma_proto) { |
38 } | 41 } |
39 | 42 |
40 } // namespace metrics | 43 } // namespace metrics |
OLD | NEW |