| Index: chrome/common/net/gaia/oauth2_revocation_fetcher.h
|
| diff --git a/chrome/common/net/gaia/oauth2_revocation_fetcher.h b/chrome/common/net/gaia/oauth2_revocation_fetcher.h
|
| index 426f42d78fa755dd389658899c03cc7da6bbb2de..21fc10d38dfaaa6c506704d5a60b94385128e993 100644
|
| --- a/chrome/common/net/gaia/oauth2_revocation_fetcher.h
|
| +++ b/chrome/common/net/gaia/oauth2_revocation_fetcher.h
|
| @@ -12,8 +12,8 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/common/net/gaia/oauth2_revocation_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 OAuth2RevocationFetcherTest;
|
|
|
| @@ -37,7 +37,7 @@ class URLRequestStatus;
|
| //
|
| // This class can handle one request at a time. To parallelize requests,
|
| // create multiple instances.
|
| -class OAuth2RevocationFetcher : public content::URLFetcherDelegate {
|
| +class OAuth2RevocationFetcher : public net::URLFetcherDelegate {
|
| public:
|
| OAuth2RevocationFetcher(OAuth2RevocationConsumer* consumer,
|
| net::URLRequestContextGetter* getter);
|
| @@ -51,7 +51,7 @@ class OAuth2RevocationFetcher : public content::URLFetcherDelegate {
|
|
|
| void CancelRequest();
|
|
|
| - // Implementation of content::URLFetcherDelegate
|
| + // Implementation of net::URLFetcherDelegate
|
| virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
|
|
|
| private:
|
|
|