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

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: Fix more errors 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 65df72b04aa034053d80a292362a0c234f574884..918fc3e4b556bc76f811fa1ecda79ae2ed9acbf9 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