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

Unified Diff: chrome/browser/about_flags.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix more errors 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index d481a23de51d4dff18f6c5dc07f5016d77ec715f..afcef26122ce8c2cfa8d9aed91ce6ffec27be470 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -2163,7 +2163,7 @@ class FlagsState {
// Returns the singleton instance of this class
static FlagsState* GetInstance() {
- return Singleton<FlagsState>::get();
+ return base::Singleton<FlagsState>::get();
}
private:

Powered by Google App Engine
This is Rietveld 408576698