| Index: chrome/common/net/gaia/oauth2_revocation_fetcher.cc
|
| diff --git a/chrome/common/net/gaia/oauth2_revocation_fetcher.cc b/chrome/common/net/gaia/oauth2_revocation_fetcher.cc
|
| index 207734b18a250e038056d1a0af28bcde5beb0e6a..afd7bd93a08041705b6ead2d2999b7c1b99d205a 100644
|
| --- a/chrome/common/net/gaia/oauth2_revocation_fetcher.cc
|
| +++ b/chrome/common/net/gaia/oauth2_revocation_fetcher.cc
|
| @@ -105,7 +105,7 @@ void OAuth2RevocationFetcher::StartRevocation() {
|
| fetcher_->Start(); // OnURLFetchComplete will be called.
|
| }
|
|
|
| -void OAuth2RevocationFetcher::EndRevocation(const URLFetcher* source) {
|
| +void OAuth2RevocationFetcher::EndRevocation(const net::URLFetcher* source) {
|
| CHECK_EQ(REVOCATION_STARTED, state_);
|
| state_ = REVOCATION_DONE;
|
|
|
| @@ -134,7 +134,8 @@ void OAuth2RevocationFetcher::OnRevocationFailure(
|
| consumer_->OnRevocationFailure(error);
|
| }
|
|
|
| -void OAuth2RevocationFetcher::OnURLFetchComplete(const URLFetcher* source) {
|
| +void OAuth2RevocationFetcher::OnURLFetchComplete(
|
| + const net::URLFetcher* source) {
|
| CHECK(source);
|
| EndRevocation(source);
|
| }
|
|
|