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

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: git cl format 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: 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

Powered by Google App Engine
This is Rietveld 408576698