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

Unified Diff: components/keyed_service/ios/browser_state_dependency_manager.h

Issue 1090373003: Allow cross dependencies between BCKSF and BSKSF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove wrapper methods Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/keyed_service/ios/browser_state_dependency_manager.h
diff --git a/components/keyed_service/ios/browser_state_dependency_manager.h b/components/keyed_service/ios/browser_state_dependency_manager.h
index aaca3ba38ebe2a732eeedd89b22bea92168ac133..c13f4a8a4c9e565d76a3f574dea72d466048b0df 100644
--- a/components/keyed_service/ios/browser_state_dependency_manager.h
+++ b/components/keyed_service/ios/browser_state_dependency_manager.h
@@ -34,8 +34,8 @@ class KEYED_SERVICE_EXPORT BrowserStateDependencyManager
// |context| should be the BrowserState containing |registry| and is used as
// a key to prevent multiple registrations on the same BrowserState in
// tests.
- void RegisterProfilePrefsForServices(
- const web::BrowserState* context,
+ void RegisterBrowserStatePrefsForServices(
+ web::BrowserState* context,
user_prefs::PrefRegistrySyncable* registry);
// Called by each BrowserState to alert us of its creation. Service that
@@ -80,8 +80,7 @@ class KEYED_SERVICE_EXPORT BrowserStateDependencyManager
#ifndef NDEBUG
// DependencyManager:
- void DumpContextDependencies(
- const base::SupportsUserData* context) const final;
+ void DumpContextDependencies(base::SupportsUserData* context) const final;
#endif // NDEBUG
DISALLOW_COPY_AND_ASSIGN(BrowserStateDependencyManager);

Powered by Google App Engine
This is Rietveld 408576698