Index: chrome/common/net/gaia/oauth2_api_call_flow.cc |
diff --git a/chrome/common/net/gaia/oauth2_api_call_flow.cc b/chrome/common/net/gaia/oauth2_api_call_flow.cc |
index 230e57b7c4bb007361b973cbc06968307e16a9dc..189ab8a2b59e9d533adb8c6edf38c05e2c2f1e15 100644 |
--- a/chrome/common/net/gaia/oauth2_api_call_flow.cc |
+++ b/chrome/common/net/gaia/oauth2_api_call_flow.cc |
@@ -63,7 +63,7 @@ void OAuth2ApiCallFlow::BeginApiCall() { |
} |
} |
-void OAuth2ApiCallFlow::EndApiCall(const URLFetcher* source) { |
+void OAuth2ApiCallFlow::EndApiCall(const net::URLFetcher* source) { |
CHECK_EQ(API_CALL_STARTED, state_); |
state_ = API_CALL_DONE; |
@@ -128,7 +128,7 @@ OAuth2AccessTokenFetcher* OAuth2ApiCallFlow::CreateAccessTokenFetcher() { |
return new OAuth2AccessTokenFetcher(this, context_); |
} |
-void OAuth2ApiCallFlow::OnURLFetchComplete(const URLFetcher* source) { |
+void OAuth2ApiCallFlow::OnURLFetchComplete(const net::URLFetcher* source) { |
CHECK(source); |
CHECK_EQ(API_CALL_STARTED, state_); |
EndApiCall(source); |