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

Unified Diff: content/child/child_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/child/child_io_surface_manager_mac.h ('k') | content/common/font_cache_dispatcher_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_io_surface_manager_mac.cc
diff --git a/content/child/child_io_surface_manager_mac.cc b/content/child/child_io_surface_manager_mac.cc
index 71980b77bbd2e721d32946a5ea05a38510de0610..fb4ef9ac6524992b20166de6be75ca9ccf1f3b0c 100644
--- a/content/child/child_io_surface_manager_mac.cc
+++ b/content/child/child_io_surface_manager_mac.cc
@@ -11,8 +11,9 @@ namespace content {
// static
ChildIOSurfaceManager* ChildIOSurfaceManager::GetInstance() {
- return Singleton<ChildIOSurfaceManager,
- LeakySingletonTraits<ChildIOSurfaceManager>>::get();
+ return base::Singleton<
+ ChildIOSurfaceManager,
+ base::LeakySingletonTraits<ChildIOSurfaceManager>>::get();
}
bool ChildIOSurfaceManager::RegisterIOSurface(IOSurfaceId io_surface_id,
« no previous file with comments | « content/child/child_io_surface_manager_mac.h ('k') | content/common/font_cache_dispatcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698