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

Unified Diff: components/keyed_service/content/browser_context_dependency_manager.cc

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/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(

Powered by Google App Engine
This is Rietveld 408576698