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

Unified Diff: skia/ext/skia_memory_dump_provider.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 | « skia/ext/skia_memory_dump_provider.h ('k') | tools/valgrind/drmemory/suppressions.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/skia_memory_dump_provider.cc
diff --git a/skia/ext/skia_memory_dump_provider.cc b/skia/ext/skia_memory_dump_provider.cc
index aec9b905e7eb20400b6554ec6ffc2cfa5281b16b..9eb4e0c772e48a75e1c5aa26d5b5cab7628b00ab 100644
--- a/skia/ext/skia_memory_dump_provider.cc
+++ b/skia/ext/skia_memory_dump_provider.cc
@@ -14,8 +14,9 @@ namespace skia {
// static
SkiaMemoryDumpProvider* SkiaMemoryDumpProvider::GetInstance() {
- return Singleton<SkiaMemoryDumpProvider,
- LeakySingletonTraits<SkiaMemoryDumpProvider>>::get();
+ return base::Singleton<
+ SkiaMemoryDumpProvider,
+ base::LeakySingletonTraits<SkiaMemoryDumpProvider>>::get();
}
SkiaMemoryDumpProvider::SkiaMemoryDumpProvider() {}
« no previous file with comments | « skia/ext/skia_memory_dump_provider.h ('k') | tools/valgrind/drmemory/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698