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

Unified Diff: ppapi/proxy/interface_list.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
« no previous file with comments | « net/url_request/url_request_job_manager.cc ('k') | ppapi/proxy/plugin_resource_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/interface_list.cc
diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc
index f1194a01f3b66471357032cd3196ab6f819bc16e..f5e3e8f0ca34f9caf6a279e7275c555e73b39f8d 100644
--- a/ppapi/proxy/interface_list.cc
+++ b/ppapi/proxy/interface_list.cc
@@ -318,7 +318,7 @@ InterfaceList::~InterfaceList() {
InterfaceList* InterfaceList::GetInstance() {
// CAUTION: This function is called without the ProxyLock to avoid excessive
// excessive locking from C++ wrappers. (See also GetBrowserInterface.)
- return Singleton<InterfaceList>::get();
+ return base::Singleton<InterfaceList>::get();
}
// static
« no previous file with comments | « net/url_request/url_request_job_manager.cc ('k') | ppapi/proxy/plugin_resource_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698