| Index: chrome/browser/chromeos/login/oauth1_token_fetcher.h
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/oauth1_token_fetcher.h (revision 177312)
|
| +++ chrome/browser/chromeos/login/oauth1_token_fetcher.h (working copy)
|
| @@ -13,7 +13,9 @@
|
| #include "chrome/browser/net/gaia/gaia_oauth_consumer.h"
|
| #include "chrome/browser/net/gaia/gaia_oauth_fetcher.h"
|
|
|
| -class Profile;
|
| +namespace net {
|
| +class URLRequestContextGetter;
|
| +}
|
|
|
| namespace chromeos {
|
|
|
| @@ -32,7 +34,7 @@
|
| };
|
|
|
| OAuth1TokenFetcher(OAuth1TokenFetcher::Delegate* delegate,
|
| - Profile* auth_profile);
|
| + net::URLRequestContextGetter* auth_context_getter);
|
| virtual ~OAuth1TokenFetcher();
|
|
|
| void Start();
|
| @@ -54,7 +56,6 @@
|
| const GoogleServiceAuthError& error) OVERRIDE;
|
|
|
| OAuth1TokenFetcher::Delegate* delegate_;
|
| - Profile* auth_profile_;
|
| GaiaOAuthFetcher oauth_fetcher_;
|
|
|
| // The retry counter. Increment this only when failure happened.
|
|
|