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

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: git cl format Created 5 years, 4 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: 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,

Powered by Google App Engine
This is Rietveld 408576698