From d3ec669b62912a5464e1c89fde7218d06e4a5522 Mon Sep 17 00:00:00 2001 From: "akalin@chromium.org" Date: Wed, 23 May 2012 07:12:14 +0000 Subject: 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 --- chrome/browser/intents/cws_intents_registry.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/intents') 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 url_fetcher; + scoped_ptr url_fetcher; // The callback - invoked on completed retrieval. ResultsCallback callback; @@ -142,7 +142,7 @@ void CWSIntentsRegistry::GetIntentServices(const string16& action, scoped_ptr 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; -- cgit v1.1