| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SIGNIN_UBERTOKEN_FETCHER_H_ | 5 #ifndef CHROME_BROWSER_SIGNIN_UBERTOKEN_FETCHER_H_ |
| 6 #define CHROME_BROWSER_SIGNIN_UBERTOKEN_FETCHER_H_ | 6 #define CHROME_BROWSER_SIGNIN_UBERTOKEN_FETCHER_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "google_apis/gaia/gaia_auth_consumer.h" | 9 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 10 #include "google_apis/gaia/oauth2_token_service.h" | 10 #include "google_apis/gaia/oauth2_token_service.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 // Allows to retrieve an uber-auth token. | 34 // Allows to retrieve an uber-auth token. |
| 35 class UbertokenFetcher : public GaiaAuthConsumer, | 35 class UbertokenFetcher : public GaiaAuthConsumer, |
| 36 public OAuth2TokenService::Consumer { | 36 public OAuth2TokenService::Consumer { |
| 37 public: | 37 public: |
| 38 UbertokenFetcher(Profile* profile, UbertokenConsumer* consumer); | 38 UbertokenFetcher(Profile* profile, UbertokenConsumer* consumer); |
| 39 virtual ~UbertokenFetcher(); | 39 virtual ~UbertokenFetcher(); |
| 40 | 40 |
| 41 // Start fetching the token. | 41 // Start fetching the token. |
| 42 void StartFetchingToken(); | 42 void StartFetchingToken(); |
| 43 void StartFetchingToken(const std::string& account_id); | 43 virtual void StartFetchingToken(const std::string& account_id); |
| 44 | 44 |
| 45 // Overriden from GaiaAuthConsumer | 45 // Overriden from GaiaAuthConsumer |
| 46 virtual void OnUberAuthTokenSuccess(const std::string& token) OVERRIDE; | 46 virtual void OnUberAuthTokenSuccess(const std::string& token) OVERRIDE; |
| 47 virtual void OnUberAuthTokenFailure( | 47 virtual void OnUberAuthTokenFailure( |
| 48 const GoogleServiceAuthError& error) OVERRIDE; | 48 const GoogleServiceAuthError& error) OVERRIDE; |
| 49 | 49 |
| 50 // Overriden from OAuth2TokenService::Consumer: | 50 // Overriden from OAuth2TokenService::Consumer: |
| 51 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, | 51 virtual void OnGetTokenSuccess(const OAuth2TokenService::Request* request, |
| 52 const std::string& access_token, | 52 const std::string& access_token, |
| 53 const base::Time& expiration_time) OVERRIDE; | 53 const base::Time& expiration_time) OVERRIDE; |
| 54 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, | 54 virtual void OnGetTokenFailure(const OAuth2TokenService::Request* request, |
| 55 const GoogleServiceAuthError& error) OVERRIDE; | 55 const GoogleServiceAuthError& error) OVERRIDE; |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 Profile* profile_; | 58 Profile* profile_; |
| 59 UbertokenConsumer* consumer_; | 59 UbertokenConsumer* consumer_; |
| 60 scoped_ptr<GaiaAuthFetcher> gaia_auth_fetcher_; | 60 scoped_ptr<GaiaAuthFetcher> gaia_auth_fetcher_; |
| 61 scoped_ptr<OAuth2TokenService::Request> access_token_request_; | 61 scoped_ptr<OAuth2TokenService::Request> access_token_request_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(UbertokenFetcher); | 63 DISALLOW_COPY_AND_ASSIGN(UbertokenFetcher); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 #endif // CHROME_BROWSER_SIGNIN_UBERTOKEN_FETCHER_H_ | 66 #endif // CHROME_BROWSER_SIGNIN_UBERTOKEN_FETCHER_H_ |
| OLD | NEW |