summaryrefslogtreecommitdiffstats
path: root/chrome/browser/intents
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-19 08:20:53 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-19 08:20:53 +0000
commit3dc1bc4dd66c4fbf8afd6e5b02115ee3772c21a9 (patch)
tree062a1879d04c5f3a19b84c0502cecb532df198b1 /chrome/browser/intents
parent6b04841b5231edf19914543504cf52f39b1baca7 (diff)
downloadchromium_src-3dc1bc4dd66c4fbf8afd6e5b02115ee3772c21a9.zip
chromium_src-3dc1bc4dd66c4fbf8afd6e5b02115ee3772c21a9.tar.gz
chromium_src-3dc1bc4dd66c4fbf8afd6e5b02115ee3772c21a9.tar.bz2
Move content::URLFetcher static functions to net::URLFetcher
Remove content::URLFetcher. Update all references. Add explicit dependency on content_common from browser, since template_url_fetcher.cc calls AssociateURLFetcherWithRenderView (there are probably other direct uses of content_common). BUG=118220 TEST= TBR=satorux@chromium.org,mnissler@chromium.org,mal@chromium.org,jhawkins@chromium.org,sky@chromium.org,rlp@chromium.org Review URL: https://chromiumcodereview.appspot.com/10554008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142926 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 8f75b78..78fc48b 100644
--- a/chrome/browser/intents/cws_intents_registry.cc
+++ b/chrome/browser/intents/cws_intents_registry.cc
@@ -14,9 +14,9 @@
#include "chrome/browser/net/chrome_url_request_context.h"
#include "chrome/browser/webdata/web_data_service.h"
#include "chrome/common/net/url_util.h"
-#include "content/public/common/url_fetcher.h"
#include "net/base/load_flags.h"
#include "net/base/mime_util.h"
+#include "net/url_request/url_fetcher.h"
namespace {
@@ -160,7 +160,7 @@ void CWSIntentsRegistry::GetIntentServices(const string16& action,
const ResultsCallback& cb) {
scoped_ptr<IntentsQuery> query(new IntentsQuery);
query->callback = cb;
- query->url_fetcher.reset(content::URLFetcher::Create(
+ query->url_fetcher.reset(net::URLFetcher::Create(
0, BuildQueryURL(action,mimetype), net::URLFetcher::GET, this));
if (query->url_fetcher.get() == NULL)