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

Unified Diff: chrome/browser/extensions/extension_action_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: chrome/browser/extensions/extension_action_manager.cc
diff --git a/chrome/browser/extensions/extension_action_manager.cc b/chrome/browser/extensions/extension_action_manager.cc
index 7e0f40106cf35b75b054e382c3ad1e6080065a09..2bc8ba66ebab255bd9a16fc368475f56a647eb52 100644
--- a/chrome/browser/extensions/extension_action_manager.cc
+++ b/chrome/browser/extensions/extension_action_manager.cc
@@ -30,7 +30,7 @@ class ExtensionActionManagerFactory : public BrowserContextKeyedServiceFactory {
static ExtensionActionManagerFactory* GetInstance();
private:
- friend struct DefaultSingletonTraits<ExtensionActionManagerFactory>;
+ friend struct base::DefaultSingletonTraits<ExtensionActionManagerFactory>;
ExtensionActionManagerFactory()
: BrowserContextKeyedServiceFactory(
@@ -51,7 +51,7 @@ class ExtensionActionManagerFactory : public BrowserContextKeyedServiceFactory {
ExtensionActionManagerFactory*
ExtensionActionManagerFactory::GetInstance() {
- return Singleton<ExtensionActionManagerFactory>::get();
+ return base::Singleton<ExtensionActionManagerFactory>::get();
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698