siggi | c179dd06 | 2014-09-10 17:02:31 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "components/metrics/metrics_provider.h" |
| 6 | |
| 7 | namespace metrics { |
| 8 | |
| 9 | MetricsProvider::MetricsProvider() { |
| 10 | } |
| 11 | |
| 12 | MetricsProvider::~MetricsProvider() { |
| 13 | } |
| 14 | |
| 15 | void MetricsProvider::OnDidCreateMetricsLog() { |
| 16 | } |
| 17 | |
| 18 | void MetricsProvider::OnRecordingEnabled() { |
| 19 | } |
| 20 | |
| 21 | void MetricsProvider::OnRecordingDisabled() { |
| 22 | } |
| 23 | |
| 24 | void MetricsProvider::ProvideSystemProfileMetrics( |
| 25 | SystemProfileProto* system_profile_proto) { |
| 26 | } |
| 27 | |
lpromero | ca8cb6f | 2015-04-30 18:16:53 | [diff] [blame] | 28 | bool MetricsProvider::HasInitialStabilityMetrics() { |
siggi | c179dd06 | 2014-09-10 17:02:31 | [diff] [blame] | 29 | return false; |
| 30 | } |
| 31 | |
lpromero | ca8cb6f | 2015-04-30 18:16:53 | [diff] [blame] | 32 | void MetricsProvider::ProvideInitialStabilityMetrics( |
| 33 | SystemProfileProto* system_profile_proto) { |
| 34 | } |
| 35 | |
siggi | c179dd06 | 2014-09-10 17:02:31 | [diff] [blame] | 36 | void MetricsProvider::ProvideStabilityMetrics( |
| 37 | SystemProfileProto* system_profile_proto) { |
| 38 | } |
| 39 | |
asvitkine | ff3e2a6 | 2014-09-18 22:01:49 | [diff] [blame] | 40 | void MetricsProvider::ClearSavedStabilityMetrics() { |
| 41 | } |
| 42 | |
siggi | c179dd06 | 2014-09-10 17:02:31 | [diff] [blame] | 43 | void MetricsProvider::ProvideGeneralMetrics( |
| 44 | ChromeUserMetricsExtension* uma_proto) { |
| 45 | } |
| 46 | |
| 47 | } // namespace metrics |