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

Unified Diff: content/browser/browser_io_surface_manager_mac.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 | « content/browser/browser_io_surface_manager_mac.h ('k') | content/browser/browser_url_handler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_io_surface_manager_mac.cc
diff --git a/content/browser/browser_io_surface_manager_mac.cc b/content/browser/browser_io_surface_manager_mac.cc
index dbc87e66d2371fe51f4be324a6c2df055ae6f826..519b48c684ad00058f38b6bf4dbcd78b895572f9 100644
--- a/content/browser/browser_io_surface_manager_mac.cc
+++ b/content/browser/browser_io_surface_manager_mac.cc
@@ -31,8 +31,9 @@ const int kSendReplyTimeoutMs = 100;
// static
BrowserIOSurfaceManager* BrowserIOSurfaceManager::GetInstance() {
- return Singleton<BrowserIOSurfaceManager,
- LeakySingletonTraits<BrowserIOSurfaceManager>>::get();
+ return base::Singleton<
+ BrowserIOSurfaceManager,
+ base::LeakySingletonTraits<BrowserIOSurfaceManager>>::get();
}
// static
« no previous file with comments | « content/browser/browser_io_surface_manager_mac.h ('k') | content/browser/browser_url_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698