Index: components/keyed_service/content/browser_context_dependency_manager.cc |
diff --git a/components/keyed_service/content/browser_context_dependency_manager.cc b/components/keyed_service/content/browser_context_dependency_manager.cc |
index cc112d39ff7790d5af897d915ffa5a03d59db9b7..55978c45877086bca26e739661d0c0c13ceadac7 100644 |
--- a/components/keyed_service/content/browser_context_dependency_manager.cc |
+++ b/components/keyed_service/content/browser_context_dependency_manager.cc |
@@ -19,7 +19,7 @@ const char kDumpBrowserContextDependencyGraphFlag[] = |
#endif // NDEBUG |
void BrowserContextDependencyManager::RegisterProfilePrefsForServices( |
- const content::BrowserContext* context, |
+ content::BrowserContext* context, |
user_prefs::PrefRegistrySyncable* pref_registry) { |
TRACE_EVENT0( |
"browser", |
@@ -77,13 +77,15 @@ BrowserContextDependencyManager::GetInstance() { |
return Singleton<BrowserContextDependencyManager>::get(); |
} |
-BrowserContextDependencyManager::BrowserContextDependencyManager() {} |
+BrowserContextDependencyManager::BrowserContextDependencyManager() { |
+} |
-BrowserContextDependencyManager::~BrowserContextDependencyManager() {} |
+BrowserContextDependencyManager::~BrowserContextDependencyManager() { |
+} |
#ifndef NDEBUG |
void BrowserContextDependencyManager::DumpContextDependencies( |
- const base::SupportsUserData* context) const { |
+ base::SupportsUserData* context) const { |
// Whenever we try to build a destruction ordering, we should also dump a |
// dependency graph to "/path/to/context/context-dependencies.dot". |
if (base::CommandLine::ForCurrentProcess()->HasSwitch( |