diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 07:12:14 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 07:12:14 +0000 |
commit | d3ec669b62912a5464e1c89fde7218d06e4a5522 (patch) | |
tree | 3ba696064595f3a1c8fe6e0ede9735b8d5ba34b2 /chrome/browser/autofill | |
parent | 3ea8fe2d0851618159039209591354085a137b11 (diff) | |
download | chromium_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/autofill')
-rw-r--r-- | chrome/browser/autofill/autofill_download.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_download.cc b/chrome/browser/autofill/autofill_download.cc index 63ea072..7c96fac 100644 --- a/chrome/browser/autofill/autofill_download.cc +++ b/chrome/browser/autofill/autofill_download.cc @@ -171,8 +171,8 @@ bool AutofillDownloadManager::StartRequest( // Id is ignored for regular chrome, in unit test id's for fake fetcher // factory will be 0, 1, 2, ... - content::URLFetcher* fetcher = content::URLFetcher::Create( - fetcher_id_for_unittest_++, GURL(request_url), content::URLFetcher::POST, + net::URLFetcher* fetcher = content::URLFetcher::Create( + fetcher_id_for_unittest_++, GURL(request_url), net::URLFetcher::POST, this); url_fetchers_[fetcher] = request_data; fetcher->SetAutomaticallyRetryOn5xx(false); |