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

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

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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 55978c45877086bca26e739661d0c0c13ceadac7..113f1d9ebe90461a0ad953d68d0354f96ecb4775 100644
--- a/components/keyed_service/content/browser_context_dependency_manager.cc
+++ b/components/keyed_service/content/browser_context_dependency_manager.cc
@@ -74,7 +74,7 @@ void BrowserContextDependencyManager::MarkBrowserContextLiveForTesting(
// static
BrowserContextDependencyManager*
BrowserContextDependencyManager::GetInstance() {
- return Singleton<BrowserContextDependencyManager>::get();
+ return base::Singleton<BrowserContextDependencyManager>::get();
}
BrowserContextDependencyManager::BrowserContextDependencyManager() {

Powered by Google App Engine
This is Rietveld 408576698