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

Unified Diff: ios/chrome/browser/signin/account_fetcher_service_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: ios/chrome/browser/signin/account_fetcher_service_factory.h
diff --git a/ios/chrome/browser/signin/account_fetcher_service_factory.h b/ios/chrome/browser/signin/account_fetcher_service_factory.h
index 3d85383de114b468cd9e85df73d67ecc9dea0c60..3090acd13edd65bab6e01ec79c440cbef317f290 100644
--- a/ios/chrome/browser/signin/account_fetcher_service_factory.h
+++ b/ios/chrome/browser/signin/account_fetcher_service_factory.h
@@ -10,8 +10,11 @@
#include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
class AccountFetcherService;
+
+namespace base {
template <typename T>
struct DefaultSingletonTraits;
+} // namespace base
namespace ios {
@@ -24,7 +27,7 @@ class AccountFetcherServiceFactory : public BrowserStateKeyedServiceFactory {
static AccountFetcherServiceFactory* GetInstance();
private:
- friend struct DefaultSingletonTraits<AccountFetcherServiceFactory>;
+ friend struct base::DefaultSingletonTraits<AccountFetcherServiceFactory>;
AccountFetcherServiceFactory();
~AccountFetcherServiceFactory() override;

Powered by Google App Engine
This is Rietveld 408576698