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

Unified Diff: content/browser/histogram_synchronizer.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 | « content/browser/histogram_synchronizer.h ('k') | content/browser/in_process_io_surface_manager_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/histogram_synchronizer.cc
diff --git a/content/browser/histogram_synchronizer.cc b/content/browser/histogram_synchronizer.cc
index 585179031e3b64c285ddc2a7c3fbc6405cb8d4a9..e0698b9154f9af119e8f8c7595ef333b32d32f7a 100644
--- a/content/browser/histogram_synchronizer.cc
+++ b/content/browser/histogram_synchronizer.cc
@@ -180,8 +180,9 @@ HistogramSynchronizer::~HistogramSynchronizer() {
}
HistogramSynchronizer* HistogramSynchronizer::GetInstance() {
- return Singleton<HistogramSynchronizer,
- LeakySingletonTraits<HistogramSynchronizer> >::get();
+ return base::Singleton<
+ HistogramSynchronizer,
+ base::LeakySingletonTraits<HistogramSynchronizer>>::get();
}
// static
« no previous file with comments | « content/browser/histogram_synchronizer.h ('k') | content/browser/in_process_io_surface_manager_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698