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

Unified Diff: components/rlz/rlz_tracker.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/rlz/rlz_tracker.cc
diff --git a/components/rlz/rlz_tracker.cc b/components/rlz/rlz_tracker.cc
index 4594bd61f87a4d90a172066b7d2bd1d5448e3581..5531ce1e7eef912fb2a55a484b21a75ea14909e2 100644
--- a/components/rlz/rlz_tracker.cc
+++ b/components/rlz/rlz_tracker.cc
@@ -150,7 +150,7 @@ RLZTracker* RLZTracker::tracker_ = nullptr;
// static
RLZTracker* RLZTracker::GetInstance() {
- return tracker_ ? tracker_ : Singleton<RLZTracker>::get();
+ return tracker_ ? tracker_ : base::Singleton<RLZTracker>::get();
}
RLZTracker::RLZTracker()
« no previous file with comments | « components/rlz/rlz_tracker.h ('k') | components/service_tab_launcher/browser/android/service_tab_launcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698