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 } |
11 | 11 |
12 MetricsProvider::~MetricsProvider() { | 12 MetricsProvider::~MetricsProvider() { |
13 } | 13 } |
14 | 14 |
15 void MetricsProvider::Init() { | 15 void MetricsProvider::Init() { |
16 } | 16 } |
17 | 17 |
18 void MetricsProvider::OnDidCreateMetricsLog() { | 18 void MetricsProvider::OnDidCreateMetricsLog() { |
19 } | 19 } |
20 | 20 |
21 void MetricsProvider::OnRecordingEnabled() { | 21 void MetricsProvider::OnRecordingEnabled() { |
22 } | 22 } |
23 | 23 |
24 void MetricsProvider::OnRecordingDisabled() { | 24 void MetricsProvider::OnRecordingDisabled() { |
25 } | 25 } |
26 | 26 |
27 void MetricsProvider::OnAppEnterBackground() { | 27 void MetricsProvider::OnAppEnterBackground() { |
28 } | 28 } |
29 | 29 |
| 30 bool MetricsProvider::ProvideStabilitySystemProfile( |
| 31 SystemProfileProto* system_profile_proto) { |
| 32 return false; |
| 33 } |
| 34 |
30 void MetricsProvider::ProvideSystemProfileMetrics( | 35 void MetricsProvider::ProvideSystemProfileMetrics( |
31 SystemProfileProto* system_profile_proto) { | 36 SystemProfileProto* system_profile_proto) { |
32 } | 37 } |
33 | 38 |
34 bool MetricsProvider::HasInitialStabilityMetrics() { | 39 bool MetricsProvider::HasInitialStabilityMetrics() { |
35 return false; | 40 return false; |
36 } | 41 } |
37 | 42 |
38 void MetricsProvider::ProvideInitialStabilityMetrics( | 43 void MetricsProvider::ProvideInitialStabilityMetrics( |
39 SystemProfileProto* system_profile_proto) { | 44 SystemProfileProto* system_profile_proto) { |
(...skipping 12 matching lines...) Expand all Loading... |
52 | 57 |
53 void MetricsProvider::RecordHistogramSnapshots( | 58 void MetricsProvider::RecordHistogramSnapshots( |
54 base::HistogramSnapshotManager* snapshot_manager) { | 59 base::HistogramSnapshotManager* snapshot_manager) { |
55 } | 60 } |
56 | 61 |
57 void MetricsProvider::RecordInitialHistogramSnapshots( | 62 void MetricsProvider::RecordInitialHistogramSnapshots( |
58 base::HistogramSnapshotManager* snapshot_manager) { | 63 base::HistogramSnapshotManager* snapshot_manager) { |
59 } | 64 } |
60 | 65 |
61 } // namespace metrics | 66 } // namespace metrics |
OLD | NEW |