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

Unified Diff: components/tracing/trace_config_file.h

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.h
diff --git a/components/tracing/trace_config_file.h b/components/tracing/trace_config_file.h
index 273f9f1c48a9f38b18424c00b5db0c236a57b098..6fafda97fc3da6aa35005027888fcd68976ffdff 100644
--- a/components/tracing/trace_config_file.h
+++ b/components/tracing/trace_config_file.h
@@ -10,7 +10,9 @@
#include "base/trace_event/trace_config.h"
#include "components/tracing/tracing_export.h"
+namespace base {
template <typename Type> struct DefaultSingletonTraits;
+} // namespace base
namespace tracing {
@@ -75,7 +77,7 @@ class TRACING_EXPORT TraceConfigFile {
private:
// This allows constructor and destructor to be private and usable only
// by the Singleton class.
- friend struct DefaultSingletonTraits<TraceConfigFile>;
+ friend struct base::DefaultSingletonTraits<TraceConfigFile>;
TraceConfigFile();
~TraceConfigFile();
« no previous file with comments | « components/tracing/child_memory_dump_manager_delegate_impl.cc ('k') | components/tracing/trace_config_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698