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 26 matching lines...) Expand all Loading... |
37 SystemProfileProto* system_profile_proto) { | 37 SystemProfileProto* system_profile_proto) { |
38 } | 38 } |
39 | 39 |
40 void MetricsProvider::ClearSavedStabilityMetrics() { | 40 void MetricsProvider::ClearSavedStabilityMetrics() { |
41 } | 41 } |
42 | 42 |
43 void MetricsProvider::ProvideGeneralMetrics( | 43 void MetricsProvider::ProvideGeneralMetrics( |
44 ChromeUserMetricsExtension* uma_proto) { | 44 ChromeUserMetricsExtension* uma_proto) { |
45 } | 45 } |
46 | 46 |
| 47 void MetricsProvider::RecordHistogramSnapshots( |
| 48 base::HistogramSnapshotManager* hsm) { |
| 49 } |
| 50 |
47 } // namespace metrics | 51 } // namespace metrics |
OLD | NEW |