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 | |
| 28 | bool MetricsProvider::HasStabilityMetrics() { |
| 29 | return false; |
| 30 | } |
| 31 | |
| 32 | void MetricsProvider::ProvideStabilityMetrics( |
| 33 | SystemProfileProto* system_profile_proto) { |
| 34 | } |
| 35 | |
asvitkine | ff3e2a6 | 2014-09-18 22:01:49 | [diff] [blame^] | 36 | void MetricsProvider::ClearSavedStabilityMetrics() { |
| 37 | } |
| 38 | |
siggi | c179dd06 | 2014-09-10 17:02:31 | [diff] [blame] | 39 | void MetricsProvider::ProvideGeneralMetrics( |
| 40 | ChromeUserMetricsExtension* uma_proto) { |
| 41 | } |
| 42 | |
| 43 | } // namespace metrics |