Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: components/metrics/metrics_provider.cc

Issue 558653002: Allow MetricsProviders to request an initial stability log. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Move all MetricsProvider implementation to .cc file. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/metrics/metrics_provider.h ('k') | components/metrics/metrics_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
36 void MetricsProvider::ProvideGeneralMetrics(
37 ChromeUserMetricsExtension* uma_proto) {
38 }
39
40 } // namespace metrics
OLDNEW
« no previous file with comments | « components/metrics/metrics_provider.h ('k') | components/metrics/metrics_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698