summaryrefslogtreecommitdiffstats
path: root/chrome/browser/intents
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-23 07:12:14 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-23 07:12:14 +0000
commitd3ec669b62912a5464e1c89fde7218d06e4a5522 (patch)
tree3ba696064595f3a1c8fe6e0ede9735b8d5ba34b2 /chrome/browser/intents
parent3ea8fe2d0851618159039209591354085a137b11 (diff)
downloadchromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.zip
chromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.tar.gz
chromium_src-d3ec669b62912a5464e1c89fde7218d06e4a5522.tar.bz2
Change most content::URLFetcher references to net::URLFetcher
The only remaining use of content::URLFetcher is content::URLFetcher::Create. Make content::URLFetcher not inherit from net::URLFetcher. Also make code that directly create URLFetcherImpl instead call content::URLFetcher::Create. BUG=118220 TEST= TBR=mnissler@chromium.org,sky@chromium.org,mal@chromium.org,sail@chromium.org Review URL: https://chromiumcodereview.appspot.com/10412050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138443 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/intents')
-rw-r--r--chrome/browser/intents/cws_intents_registry.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/intents/cws_intents_registry.cc b/chrome/browser/intents/cws_intents_registry.cc
index 8002d46..f6467eb 100644
--- a/chrome/browser/intents/cws_intents_registry.cc
+++ b/chrome/browser/intents/cws_intents_registry.cc
@@ -32,7 +32,7 @@ struct CWSIntentsRegistry::IntentsQuery {
~IntentsQuery();
// Underlying URL request query.
- scoped_ptr<content::URLFetcher> url_fetcher;
+ scoped_ptr<net::URLFetcher> url_fetcher;
// The callback - invoked on completed retrieval.
ResultsCallback callback;
@@ -142,7 +142,7 @@ void CWSIntentsRegistry::GetIntentServices(const string16& action,
scoped_ptr<IntentsQuery> query(new IntentsQuery);
query->callback = cb;
query->url_fetcher.reset(content::URLFetcher::Create(
- 0, BuildQueryURL(action,mimetype), content::URLFetcher::GET, this));
+ 0, BuildQueryURL(action,mimetype), net::URLFetcher::GET, this));
if (query->url_fetcher.get() == NULL)
return;