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

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

Issue 886173002: Allow server endpoint to be injected into the NetMetricsLogUploader from chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed asvitkine@'s comment and include changes for chromecast/ Created 5 years, 10 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 const base::Closure& done_callback) { 58 const base::Closure& done_callback) {
59 done_callback.Run(); 59 done_callback.Run();
60 } 60 }
61 61
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 std::string& server_url,
69 const std::string& mime_type,
70 const base::Callback<void(int)>& on_upload_complete) { 68 const base::Callback<void(int)>& on_upload_complete) {
71 return scoped_ptr<MetricsLogUploader>(); 69 return scoped_ptr<MetricsLogUploader>();
72 } 70 }
73 71
74 } // namespace metrics 72 } // namespace metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698