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

Unified Diff: chrome/browser/performance_monitor/performance_monitor.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: chrome/browser/performance_monitor/performance_monitor.h
diff --git a/chrome/browser/performance_monitor/performance_monitor.h b/chrome/browser/performance_monitor/performance_monitor.h
index 22bdb584ac695ba5be7d8fccd9b590ba56e4a063..7e1b20f659adcb50b73a3b1acf49dcd0f36ea8eb 100644
--- a/chrome/browser/performance_monitor/performance_monitor.h
+++ b/chrome/browser/performance_monitor/performance_monitor.h
@@ -12,8 +12,10 @@
#include "base/timer/timer.h"
#include "chrome/browser/performance_monitor/process_metrics_history.h"
+namespace base {
template <typename Type>
struct DefaultSingletonTraits;
+} // namespace base
namespace content {
struct ChildProcessData;
@@ -36,7 +38,7 @@ class PerformanceMonitor {
private:
typedef std::map<base::ProcessHandle, ProcessMetricsHistory> MetricsMap;
- friend struct DefaultSingletonTraits<PerformanceMonitor>;
+ friend struct base::DefaultSingletonTraits<PerformanceMonitor>;
PerformanceMonitor();
virtual ~PerformanceMonitor();
« no previous file with comments | « chrome/browser/password_manager/password_store_factory.cc ('k') | chrome/browser/performance_monitor/performance_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698