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

Unified Diff: content/browser/in_process_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/in_process_io_surface_manager_mac.h ('k') | content/browser/mach_broker_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/in_process_io_surface_manager_mac.cc
diff --git a/content/browser/in_process_io_surface_manager_mac.cc b/content/browser/in_process_io_surface_manager_mac.cc
index 3d2d9971d2c1854b930156c8c3c48407ff1d3bd4..0ae8103e629dfa4288cbed480e575e13cb302d16 100644
--- a/content/browser/in_process_io_surface_manager_mac.cc
+++ b/content/browser/in_process_io_surface_manager_mac.cc
@@ -10,8 +10,9 @@ namespace content {
// static
InProcessIOSurfaceManager* InProcessIOSurfaceManager::GetInstance() {
- return Singleton<InProcessIOSurfaceManager,
- LeakySingletonTraits<InProcessIOSurfaceManager>>::get();
+ return base::Singleton<
+ InProcessIOSurfaceManager,
+ base::LeakySingletonTraits<InProcessIOSurfaceManager>>::get();
}
bool InProcessIOSurfaceManager::RegisterIOSurface(IOSurfaceId io_surface_id,
« no previous file with comments | « content/browser/in_process_io_surface_manager_mac.h ('k') | content/browser/mach_broker_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698