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

Unified Diff: base/trace_event/winheap_dump_provider_win.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add \n 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: base/trace_event/winheap_dump_provider_win.cc
diff --git a/base/trace_event/winheap_dump_provider_win.cc b/base/trace_event/winheap_dump_provider_win.cc
index 8f910b3ce15d69bc797e992ffc148b453b9d3561..b9a729202c8813a4e34825fa1872c1c00ae00eb6 100644
--- a/base/trace_event/winheap_dump_provider_win.cc
+++ b/base/trace_event/winheap_dump_provider_win.cc
@@ -43,8 +43,8 @@ void ReportHeapDump(ProcessMemoryDump* pmd, const WinHeapInfo& heap_info) {
} // namespace
WinHeapDumpProvider* WinHeapDumpProvider::GetInstance() {
- return Singleton<WinHeapDumpProvider,
- LeakySingletonTraits<WinHeapDumpProvider>>::get();
+ return base::Singleton<WinHeapDumpProvider,
+ base::LeakySingletonTraits<WinHeapDumpProvider>>::get();
}
bool WinHeapDumpProvider::OnMemoryDump(const MemoryDumpArgs& args,

Powered by Google App Engine
This is Rietveld 408576698