diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 22:52:59 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 22:52:59 +0000 |
commit | 15fb2aadeb85e93964d5c34bb52ad94f35fc01cb (patch) | |
tree | 7b66c4fd1b9ba70f081f93c1692618d4a65b03bc /chrome/service | |
parent | 3d6dfd5dd689a33c77f9032194616f75e59be1be (diff) | |
download | chromium_src-15fb2aadeb85e93964d5c34bb52ad94f35fc01cb.zip chromium_src-15fb2aadeb85e93964d5c34bb52ad94f35fc01cb.tar.gz chromium_src-15fb2aadeb85e93964d5c34bb52ad94f35fc01cb.tar.bz2 |
Remove content::URLFetcherDelegate
Change all references to net::URLFetcherDelegate.
Change some instances of content::URLFetcher to net::URLFetcher as
needed.
Remove unused files auth_response_handler.*.
BUG=118220
TEST=
TBR=sky@chromium.org,joi@chromium.org,mnissler@chromium.org,rlp@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10392192
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138384 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/cloud_print_url_fetcher.h | 6 | ||||
-rw-r--r-- | chrome/service/gaia/service_gaia_authenticator.cc | 2 | ||||
-rw-r--r-- | chrome/service/gaia/service_gaia_authenticator.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher.h b/chrome/service/cloud_print/cloud_print_url_fetcher.h index 202e035..92b988d 100644 --- a/chrome/service/cloud_print/cloud_print_url_fetcher.h +++ b/chrome/service/cloud_print/cloud_print_url_fetcher.h @@ -11,7 +11,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.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 GURL; @@ -31,7 +31,7 @@ class URLRequestStatus; // must also be retried. class CloudPrintURLFetcher : public base::RefCountedThreadSafe<CloudPrintURLFetcher>, - public content::URLFetcherDelegate { + public net::URLFetcherDelegate { public: enum ResponseAction { CONTINUE_PROCESSING, @@ -106,7 +106,7 @@ class CloudPrintURLFetcher const std::string& post_data, const std::string& additional_headers); - // content::URLFetcherDelegate implementation. + // net::URLFetcherDelegate implementation. virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; protected: diff --git a/chrome/service/gaia/service_gaia_authenticator.cc b/chrome/service/gaia/service_gaia_authenticator.cc index 2f67acb..a7a2da3 100644 --- a/chrome/service/gaia/service_gaia_authenticator.cc +++ b/chrome/service/gaia/service_gaia_authenticator.cc @@ -21,7 +21,7 @@ ServiceGaiaAuthenticator::ServiceGaiaAuthenticator( http_response_code_(0) { } -// content::URLFetcherDelegate implementation +// net::URLFetcherDelegate implementation void ServiceGaiaAuthenticator::OnURLFetchComplete( const net::URLFetcher* source) { DCHECK(io_message_loop_proxy_->BelongsToCurrentThread()); diff --git a/chrome/service/gaia/service_gaia_authenticator.h b/chrome/service/gaia/service_gaia_authenticator.h index dc84a58..f4abb9e 100644 --- a/chrome/service/gaia/service_gaia_authenticator.h +++ b/chrome/service/gaia/service_gaia_authenticator.h @@ -12,7 +12,7 @@ #include "base/memory/ref_counted.h" #include "base/synchronization/waitable_event.h" #include "chrome/common/net/gaia/gaia_authenticator.h" -#include "content/public/common/url_fetcher_delegate.h" +#include "net/url_request/url_fetcher_delegate.h" namespace base { class MessageLoopProxy; @@ -22,7 +22,7 @@ class MessageLoopProxy; // we cannot rely on the existence of a Profile) class ServiceGaiaAuthenticator : public base::RefCountedThreadSafe<ServiceGaiaAuthenticator>, - public content::URLFetcherDelegate, + public net::URLFetcherDelegate, public gaia::GaiaAuthenticator { public: ServiceGaiaAuthenticator(const std::string& user_agent, @@ -30,7 +30,7 @@ class ServiceGaiaAuthenticator const std::string& gaia_url, base::MessageLoopProxy* io_message_loop_proxy); - // content::URLFetcherDelegate implementation. + // net::URLFetcherDelegate implementation. virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; protected: |