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

Unified Diff: ios/chrome/browser/application_context.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: ios/chrome/browser/application_context.h
diff --git a/ios/chrome/browser/application_context.h b/ios/chrome/browser/application_context.h
index 0e060d92d11caf77098826ffb09f16c0835e06fb..cf49fd29e30cd8d4fb7b6eac99a57a7e390ed042 100644
--- a/ios/chrome/browser/application_context.h
+++ b/ios/chrome/browser/application_context.h
@@ -46,7 +46,7 @@ class PhysicalWebDataSource;
}
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
}
namespace variations {
@@ -102,8 +102,8 @@ class ApplicationContext {
// Gets the VariationsService used by this application.
virtual variations::VariationsService* GetVariationsService() = 0;
- // Gets the RapporService. May return null.
- virtual rappor::RapporService* GetRapporService() = 0;
+ // Gets the RapporServiceImpl. May return null.
+ virtual rappor::RapporServiceImpl* GetRapporServiceImpl() = 0;
// Gets the ChromeNetLog.
virtual net_log::ChromeNetLog* GetNetLog() = 0;

Powered by Google App Engine
This is Rietveld 408576698