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

Unified Diff: components/metrics_services_manager/metrics_services_manager_client.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: components/metrics_services_manager/metrics_services_manager_client.h
diff --git a/components/metrics_services_manager/metrics_services_manager_client.h b/components/metrics_services_manager/metrics_services_manager_client.h
index 7a5779c81a8cbf2c46418f0904e281617f047a54..b53d39dbc5532e1bab89fea008fc6745cefa884f 100644
--- a/components/metrics_services_manager/metrics_services_manager_client.h
+++ b/components/metrics_services_manager/metrics_services_manager_client.h
@@ -19,7 +19,7 @@ class URLRequestContextGetter;
}
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
}
namespace variations {
@@ -35,7 +35,8 @@ class MetricsServicesManagerClient {
virtual ~MetricsServicesManagerClient() {}
// Methods that create the various services in the context of the embedder.
- virtual std::unique_ptr<rappor::RapporService> CreateRapporService() = 0;
+ virtual std::unique_ptr<rappor::RapporServiceImpl>
+ CreateRapporServiceImpl() = 0;
virtual std::unique_ptr<variations::VariationsService>
CreateVariationsService() = 0;
virtual std::unique_ptr<metrics::MetricsServiceClient>

Powered by Google App Engine
This is Rietveld 408576698