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