| Index: chrome/common/net/gaia/oauth2_access_token_fetcher.h
|
| diff --git a/chrome/common/net/gaia/oauth2_access_token_fetcher.h b/chrome/common/net/gaia/oauth2_access_token_fetcher.h
|
| index ce5e5dd2294654d1bca6d36e4c24b190ceb2d39e..d5c91a6c3dc27641287aa7612deff616ccd9a06b 100644
|
| --- a/chrome/common/net/gaia/oauth2_access_token_fetcher.h
|
| +++ b/chrome/common/net/gaia/oauth2_access_token_fetcher.h
|
| @@ -12,8 +12,8 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/common/net/gaia/oauth2_access_token_consumer.h"
|
| #include "content/public/common/url_fetcher.h"
|
| -#include "content/public/common/url_fetcher_delegate.h"
|
| #include "googleurl/src/gurl.h"
|
| +#include "net/url_request/url_fetcher_delegate.h"
|
|
|
| class OAuth2AccessTokenFetcherTest;
|
|
|
| @@ -40,7 +40,7 @@ class URLRequestStatus;
|
| //
|
| // This class can handle one request at a time. To parallelize requests,
|
| // create multiple instances.
|
| -class OAuth2AccessTokenFetcher : public content::URLFetcherDelegate {
|
| +class OAuth2AccessTokenFetcher : public net::URLFetcherDelegate {
|
| public:
|
| OAuth2AccessTokenFetcher(OAuth2AccessTokenConsumer* consumer,
|
| net::URLRequestContextGetter* getter);
|
| @@ -59,7 +59,7 @@ class OAuth2AccessTokenFetcher : public content::URLFetcherDelegate {
|
|
|
| void CancelRequest();
|
|
|
| - // Implementation of content::URLFetcherDelegate
|
| + // Implementation of net::URLFetcherDelegate
|
| virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
|
|
|
| private:
|
|
|