| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ | 5 #ifndef IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ |
| 6 #define IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ | 6 #define IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "components/keyed_service/ios/browser_state_keyed_service_factory.h" | 10 #include "components/keyed_service/ios/browser_state_keyed_service_factory.h" |
| 11 | 11 |
| 12 namespace ios { | 12 namespace ios { |
| 13 class ChromeBrowserState; | 13 class ChromeBrowserState; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace base { |
| 16 template <typename T> | 17 template <typename T> |
| 17 struct DefaultSingletonTraits; | 18 struct DefaultSingletonTraits; |
| 19 } // namespace base |
| 20 |
| 18 class ProfileOAuth2TokenService; | 21 class ProfileOAuth2TokenService; |
| 19 | 22 |
| 20 // Singleton that owns all ProfileOAuth2TokenServices and associates them with | 23 // Singleton that owns all ProfileOAuth2TokenServices and associates them with |
| 21 // ios::ChromeBrowserState. | 24 // ios::ChromeBrowserState. |
| 22 class OAuth2TokenServiceFactory : public BrowserStateKeyedServiceFactory { | 25 class OAuth2TokenServiceFactory : public BrowserStateKeyedServiceFactory { |
| 23 public: | 26 public: |
| 24 // Returns the instance of ProfileOAuth2TokenService associated with this | 27 // Returns the instance of ProfileOAuth2TokenService associated with this |
| 25 // browser state (creating one if none exists). Returns nulltpr if this | 28 // browser state (creating one if none exists). Returns nulltpr if this |
| 26 // browser state cannot have a ProfileOAuth2TokenService (for example, if | 29 // browser state cannot have a ProfileOAuth2TokenService (for example, if |
| 27 // |browser_state| is incognito). | 30 // |browser_state| is incognito). |
| 28 static ProfileOAuth2TokenService* GetForBrowserState( | 31 static ProfileOAuth2TokenService* GetForBrowserState( |
| 29 ios::ChromeBrowserState* browser_state); | 32 ios::ChromeBrowserState* browser_state); |
| 30 | 33 |
| 31 // Returns an instance of the OAuth2TokenServiceFactory singleton. | 34 // Returns an instance of the OAuth2TokenServiceFactory singleton. |
| 32 static OAuth2TokenServiceFactory* GetInstance(); | 35 static OAuth2TokenServiceFactory* GetInstance(); |
| 33 | 36 |
| 34 private: | 37 private: |
| 35 friend struct DefaultSingletonTraits<OAuth2TokenServiceFactory>; | 38 friend struct base::DefaultSingletonTraits<OAuth2TokenServiceFactory>; |
| 36 | 39 |
| 37 OAuth2TokenServiceFactory(); | 40 OAuth2TokenServiceFactory(); |
| 38 ~OAuth2TokenServiceFactory() override; | 41 ~OAuth2TokenServiceFactory() override; |
| 39 | 42 |
| 40 // BrowserStateKeyedServiceFactory implementation. | 43 // BrowserStateKeyedServiceFactory implementation. |
| 41 scoped_ptr<KeyedService> BuildServiceInstanceFor( | 44 scoped_ptr<KeyedService> BuildServiceInstanceFor( |
| 42 web::BrowserState* context) const override; | 45 web::BrowserState* context) const override; |
| 43 void RegisterBrowserStatePrefs( | 46 void RegisterBrowserStatePrefs( |
| 44 user_prefs::PrefRegistrySyncable* registry) override; | 47 user_prefs::PrefRegistrySyncable* registry) override; |
| 45 | 48 |
| 46 DISALLOW_COPY_AND_ASSIGN(OAuth2TokenServiceFactory); | 49 DISALLOW_COPY_AND_ASSIGN(OAuth2TokenServiceFactory); |
| 47 }; | 50 }; |
| 48 | 51 |
| 49 #endif // IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ | 52 #endif // IOS_CHROME_BROWSER_SIGNIN_OAUTH2_TOKEN_SERVICE_FACTORY_H_ |
| OLD | NEW |