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

Unified Diff: chrome/browser/profile_resetter/automatic_profile_resetter_factory.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/profile_resetter/automatic_profile_resetter_factory.h
diff --git a/chrome/browser/profile_resetter/automatic_profile_resetter_factory.h b/chrome/browser/profile_resetter/automatic_profile_resetter_factory.h
index fbbb03f5eb180b289cef32b461ee0933c38daf81..bbf8012dc284b4a32a9b24b5e621d3601af1ea82 100644
--- a/chrome/browser/profile_resetter/automatic_profile_resetter_factory.h
+++ b/chrome/browser/profile_resetter/automatic_profile_resetter_factory.h
@@ -8,8 +8,10 @@
#include "base/basictypes.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+namespace base {
template <typename T>
struct DefaultSingletonTraits;
+} // namespace base
class PrefRegistrySimple;
@@ -34,7 +36,7 @@ class AutomaticProfileResetterFactory
static void RegisterPrefs(PrefRegistrySimple* registry);
private:
- friend struct DefaultSingletonTraits<AutomaticProfileResetterFactory>;
+ friend struct base::DefaultSingletonTraits<AutomaticProfileResetterFactory>;
AutomaticProfileResetterFactory();
~AutomaticProfileResetterFactory() override;

Powered by Google App Engine
This is Rietveld 408576698