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

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

Issue 979363003: UMA: use a more frequent upload interval for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adds upload interval to client Created 5 years, 9 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
OLDNEW
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/test_metrics_service_client.h" 5 #include "components/metrics/test_metrics_service_client.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "components/metrics/metrics_log_uploader.h" 8 #include "components/metrics/metrics_log_uploader.h"
9 #include "components/metrics/proto/chrome_user_metrics_extension.pb.h" 9 #include "components/metrics/proto/chrome_user_metrics_extension.pb.h"
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 void TestMetricsServiceClient::CollectFinalMetrics( 62 void TestMetricsServiceClient::CollectFinalMetrics(
63 const base::Closure& done_callback) { 63 const base::Closure& done_callback) {
64 done_callback.Run(); 64 done_callback.Run();
65 } 65 }
66 66
67 scoped_ptr<MetricsLogUploader> TestMetricsServiceClient::CreateUploader( 67 scoped_ptr<MetricsLogUploader> TestMetricsServiceClient::CreateUploader(
68 const base::Callback<void(int)>& on_upload_complete) { 68 const base::Callback<void(int)>& on_upload_complete) {
69 return scoped_ptr<MetricsLogUploader>(); 69 return scoped_ptr<MetricsLogUploader>();
70 } 70 }
71 71
72 base::TimeDelta TestMetricsServiceClient::GetStandardUploadInterval() {
73 return base::TimeDelta::FromMinutes(5);
74 }
75
72 } // namespace metrics 76 } // namespace metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698