| Index: chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| diff --git a/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc b/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| index e5738724c8df6d2ebd287fc8cccbddbe10d23ade..0ed97b6e29364a482cd3668398677a0fcd4259f9 100644
|
| --- a/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| +++ b/chrome/common/net/gaia/oauth2_mint_token_fetcher.cc
|
| @@ -109,7 +109,7 @@ void OAuth2MintTokenFetcher::StartMintToken() {
|
| fetcher_->Start(); // OnURLFetchComplete will be called.
|
| }
|
|
|
| -void OAuth2MintTokenFetcher::EndMintToken(const URLFetcher* source) {
|
| +void OAuth2MintTokenFetcher::EndMintToken(const net::URLFetcher* source) {
|
| CHECK_EQ(MINT_TOKEN_STARTED, state_);
|
| state_ = MINT_TOKEN_DONE;
|
|
|
| @@ -143,7 +143,7 @@ void OAuth2MintTokenFetcher::OnMintTokenFailure(
|
| consumer_->OnMintTokenFailure(error);
|
| }
|
|
|
| -void OAuth2MintTokenFetcher::OnURLFetchComplete(const URLFetcher* source) {
|
| +void OAuth2MintTokenFetcher::OnURLFetchComplete(const net::URLFetcher* source) {
|
| CHECK(source);
|
| CHECK_EQ(MINT_TOKEN_STARTED, state_);
|
| EndMintToken(source);
|
| @@ -174,7 +174,7 @@ std::string OAuth2MintTokenFetcher::MakeMintTokenBody(
|
|
|
| // static
|
| bool OAuth2MintTokenFetcher::ParseMintTokenResponse(
|
| - const URLFetcher* source,
|
| + const net::URLFetcher* source,
|
| std::string* access_token) {
|
| CHECK(source);
|
| CHECK(access_token);
|
|
|