| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 SystemProfileProto* system_profile_proto) { | 43 SystemProfileProto* system_profile_proto) { |
| 44 } | 44 } |
| 45 | 45 |
| 46 void MetricsProvider::ClearSavedStabilityMetrics() { | 46 void MetricsProvider::ClearSavedStabilityMetrics() { |
| 47 } | 47 } |
| 48 | 48 |
| 49 void MetricsProvider::ProvideGeneralMetrics( | 49 void MetricsProvider::ProvideGeneralMetrics( |
| 50 ChromeUserMetricsExtension* uma_proto) { | 50 ChromeUserMetricsExtension* uma_proto) { |
| 51 } | 51 } |
| 52 | 52 |
| 53 void MetricsProvider::MergeHistogramDeltas() { | |
| 54 } | |
| 55 | |
| 56 void MetricsProvider::RecordHistogramSnapshots( | 53 void MetricsProvider::RecordHistogramSnapshots( |
| 57 base::HistogramSnapshotManager* snapshot_manager) { | 54 base::HistogramSnapshotManager* snapshot_manager) { |
| 58 } | 55 } |
| 59 | 56 |
| 60 void MetricsProvider::RecordInitialHistogramSnapshots( | 57 void MetricsProvider::RecordInitialHistogramSnapshots( |
| 61 base::HistogramSnapshotManager* snapshot_manager) { | 58 base::HistogramSnapshotManager* snapshot_manager) { |
| 62 } | 59 } |
| 63 | 60 |
| 64 } // namespace metrics | 61 } // namespace metrics |
| OLD | NEW |