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

Unified Diff: components/tracing/trace_config_file.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: components/tracing/trace_config_file.cc
diff --git a/components/tracing/trace_config_file.cc b/components/tracing/trace_config_file.cc
index e1cbc5c391e6c98edda8f907a91c53e9d39b7e81..796eb1b7cb5dae5c923ddef43b1589cdd26eb243 100644
--- a/components/tracing/trace_config_file.cc
+++ b/components/tracing/trace_config_file.cc
@@ -41,8 +41,8 @@ const char kResultFileParam[] = "result_file";
} // namespace
TraceConfigFile* TraceConfigFile::GetInstance() {
- return Singleton<TraceConfigFile,
- DefaultSingletonTraits<TraceConfigFile>>::get();
+ return base::Singleton<TraceConfigFile,
+ base::DefaultSingletonTraits<TraceConfigFile>>::get();
}
TraceConfigFile::TraceConfigFile()
« no previous file with comments | « components/tracing/trace_config_file.h ('k') | components/translate/core/browser/translate_download_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698