diff options
Diffstat (limited to 'chrome/browser/net/sdch_dictionary_fetcher.cc')
-rw-r--r-- | chrome/browser/net/sdch_dictionary_fetcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/net/sdch_dictionary_fetcher.cc b/chrome/browser/net/sdch_dictionary_fetcher.cc index c6a518a..e122ba7 100644 --- a/chrome/browser/net/sdch_dictionary_fetcher.cc +++ b/chrome/browser/net/sdch_dictionary_fetcher.cc @@ -8,8 +8,8 @@ #include "base/compiler_specific.h" #include "base/message_loop.h" #include "chrome/browser/profiles/profile.h" -#include "content/public/common/url_fetcher.h" #include "net/base/load_flags.h" +#include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_status.h" @@ -66,7 +66,7 @@ void SdchDictionaryFetcher::StartFetching() { task_is_pending_ = false; DCHECK(context_.get()); - current_fetch_.reset(content::URLFetcher::Create( + current_fetch_.reset(net::URLFetcher::Create( fetch_queue_.front(), net::URLFetcher::GET, this)); fetch_queue_.pop(); current_fetch_->SetRequestContext(context_.get()); |