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/browser/intents | |
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/browser/intents')
-rw-r--r-- | chrome/browser/intents/cws_intents_registry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/intents/cws_intents_registry.h b/chrome/browser/intents/cws_intents_registry.h index caf3649..be02f79 100644 --- a/chrome/browser/intents/cws_intents_registry.h +++ b/chrome/browser/intents/cws_intents_registry.h @@ -11,8 +11,8 @@ #include "base/hash_tables.h" #include "base/memory/ref_counted.h" #include "chrome/browser/profiles/profile_keyed_service.h" -#include "content/public/common/url_fetcher_delegate.h" #include "googleurl/src/gurl.h" +#include "net/url_request/url_fetcher_delegate.h" namespace net { class URLRequestContextGetter; @@ -21,7 +21,7 @@ class URLRequestContextGetter; // Handles storing and retrieving of web intents in the web database. // The registry provides filtering logic to retrieve specific types of intents. class CWSIntentsRegistry : public ProfileKeyedService, - public content::URLFetcherDelegate { + public net::URLFetcherDelegate { public: // Data returned from CWS for a single service. struct IntentExtensionInfo { @@ -72,7 +72,7 @@ class CWSIntentsRegistry : public ProfileKeyedService, explicit CWSIntentsRegistry(net::URLRequestContextGetter* context); virtual ~CWSIntentsRegistry(); - // content::URLFetcherDelegate implementation. + // net::URLFetcherDelegate implementation. virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; // Map for all in-flight web data requests/intent queries. |