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

Unified Diff: extensions/browser/extension_function_registry.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 ios 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: extensions/browser/extension_function_registry.cc
diff --git a/extensions/browser/extension_function_registry.cc b/extensions/browser/extension_function_registry.cc
index fe15b7fa0dd9b42169bc753128e77eca94993229..a5b6b6b6e37045f1a717c848ce85d33e4a6cff16 100644
--- a/extensions/browser/extension_function_registry.cc
+++ b/extensions/browser/extension_function_registry.cc
@@ -10,7 +10,7 @@
// static
ExtensionFunctionRegistry* ExtensionFunctionRegistry::GetInstance() {
- return Singleton<ExtensionFunctionRegistry>::get();
+ return base::Singleton<ExtensionFunctionRegistry>::get();
}
ExtensionFunctionRegistry::ExtensionFunctionRegistry() {

Powered by Google App Engine
This is Rietveld 408576698