Index: chrome/common/net/gaia/oauth2_api_call_flow.h |
diff --git a/chrome/common/net/gaia/oauth2_api_call_flow.h b/chrome/common/net/gaia/oauth2_api_call_flow.h |
index 8cf1c8977e12ffa5c54d9ae4abdfb74b617b4c0a..1afdaa4e3543fccd4ca746c760afe3bff497ec5e 100644 |
--- a/chrome/common/net/gaia/oauth2_api_call_flow.h |
+++ b/chrome/common/net/gaia/oauth2_api_call_flow.h |
@@ -13,7 +13,7 @@ |
#include "chrome/common/net/gaia/oauth2_mint_token_consumer.h" |
#include "chrome/common/net/gaia/oauth2_mint_token_fetcher.h" |
#include "content/public/common/url_fetcher.h" |
-#include "content/public/common/url_fetcher_delegate.h" |
+#include "net/url_request/url_fetcher_delegate.h" |
class GoogleServiceAuthError; |
class OAuth2MintTokenFlowTest; |
@@ -35,7 +35,7 @@ class URLRequestContextGetter; |
// This class abstracts the basic steps and exposes template methods |
// for sub-classes to implement for API specific details. |
class OAuth2ApiCallFlow |
- : public content::URLFetcherDelegate, |
+ : public net::URLFetcherDelegate, |
public OAuth2AccessTokenConsumer { |
public: |
// Creates an instance that works with the given data. |
@@ -56,7 +56,7 @@ class OAuth2ApiCallFlow |
virtual void OnGetTokenSuccess(const std::string& access_token) OVERRIDE; |
virtual void OnGetTokenFailure(const GoogleServiceAuthError& error) OVERRIDE; |
- // content::URLFetcherDelegate implementation. |
+ // net::URLFetcherDelegate implementation. |
virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; |
protected: |