| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_FOR_SYNC_H_ |
| 6 #define CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_FOR_SYNC_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/signin/profile_oauth2_token_service.h" | 8 #include "chrome/browser/signin/profile_oauth2_token_service.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 class BrowserContext; | 11 class BrowserContext; |
| 12 } | 12 } |
| 13 | 13 |
| 14 class FakeOAuth2TokenService : public ProfileOAuth2TokenService { | 14 class FakeOAuth2TokenServiceForSync : public ProfileOAuth2TokenService { |
| 15 public: | 15 public: |
| 16 static BrowserContextKeyedService* BuildTokenService( | 16 static BrowserContextKeyedService* BuildTokenService( |
| 17 content::BrowserContext* context); | 17 content::BrowserContext* context); |
| 18 | 18 |
| 19 virtual bool RefreshTokenIsAvailable( | 19 virtual bool RefreshTokenIsAvailable( |
| 20 const std::string& account_id) OVERRIDE; | 20 const std::string& account_id) OVERRIDE; |
| 21 | 21 |
| 22 virtual void UpdateCredentials(const std::string& account_id, | 22 virtual void UpdateCredentials(const std::string& account_id, |
| 23 const std::string& refresh_token) OVERRIDE; | 23 const std::string& refresh_token) OVERRIDE; |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 virtual void FetchOAuth2Token( | 26 virtual void FetchOAuth2Token( |
| 27 OAuth2TokenService::RequestImpl* request, | 27 OAuth2TokenService::RequestImpl* request, |
| 28 const std::string& account_id, | 28 const std::string& account_id, |
| 29 net::URLRequestContextGetter* getter, | 29 net::URLRequestContextGetter* getter, |
| 30 const std::string& client_id, | 30 const std::string& client_id, |
| 31 const std::string& client_secret, | 31 const std::string& client_secret, |
| 32 const OAuth2TokenService::ScopeSet& scopes) OVERRIDE; | 32 const OAuth2TokenService::ScopeSet& scopes) OVERRIDE; |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 std::string account_id_; | 35 std::string account_id_; |
| 36 std::string refresh_token_; | 36 std::string refresh_token_; |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 #endif // CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_H_ | 39 #endif // CHROME_BROWSER_SYNC_FAKE_OAUTH2_TOKEN_SERVICE_FOR_SYNC_H_ |
| OLD | NEW |