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

Unified Diff: content/browser/android/in_process_surface_texture_manager.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
Index: content/browser/android/in_process_surface_texture_manager.cc
diff --git a/content/browser/android/in_process_surface_texture_manager.cc b/content/browser/android/in_process_surface_texture_manager.cc
index 4a5f698644ba83792a5728a00d998e4ec073b10e..23dc67c2e8ced942561f4bbde44c01daccd3706a 100644
--- a/content/browser/android/in_process_surface_texture_manager.cc
+++ b/content/browser/android/in_process_surface_texture_manager.cc
@@ -17,8 +17,9 @@ namespace content {
// static
InProcessSurfaceTextureManager* InProcessSurfaceTextureManager::GetInstance() {
- return Singleton<InProcessSurfaceTextureManager,
- LeakySingletonTraits<InProcessSurfaceTextureManager>>::get();
+ return base::Singleton<
+ InProcessSurfaceTextureManager,
+ base::LeakySingletonTraits<InProcessSurfaceTextureManager>>::get();
}
void InProcessSurfaceTextureManager::RegisterSurfaceTexture(
« no previous file with comments | « content/browser/android/in_process_surface_texture_manager.h ('k') | content/browser/bootstrap_sandbox_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698