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/net/sdch_dictionary_fetcher.cc | |
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/net/sdch_dictionary_fetcher.cc')
-rw-r--r-- | chrome/browser/net/sdch_dictionary_fetcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/net/sdch_dictionary_fetcher.cc b/chrome/browser/net/sdch_dictionary_fetcher.cc index 67baab0..c6a518a 100644 --- a/chrome/browser/net/sdch_dictionary_fetcher.cc +++ b/chrome/browser/net/sdch_dictionary_fetcher.cc @@ -67,7 +67,7 @@ void SdchDictionaryFetcher::StartFetching() { DCHECK(context_.get()); current_fetch_.reset(content::URLFetcher::Create( - fetch_queue_.front(), content::URLFetcher::GET, this)); + fetch_queue_.front(), net::URLFetcher::GET, this)); fetch_queue_.pop(); current_fetch_->SetRequestContext(context_.get()); current_fetch_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | |