Index: chrome/browser/spellchecker/spellcheck_host_impl.cc |
diff --git a/chrome/browser/spellchecker/spellcheck_host_impl.cc b/chrome/browser/spellchecker/spellcheck_host_impl.cc |
index 4615576850b6cff1b8f588f183187ba6d2a0bde6..b9692987ea5f5ff64be21971517bb2e1bc00c7d9 100644 |
--- a/chrome/browser/spellchecker/spellcheck_host_impl.cc |
+++ b/chrome/browser/spellchecker/spellcheck_host_impl.cc |
@@ -28,9 +28,9 @@ |
#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_types.h" |
#include "content/public/browser/render_process_host.h" |
-#include "content/public/common/url_fetcher.h" |
#include "googleurl/src/gurl.h" |
#include "net/base/load_flags.h" |
+#include "net/url_request/url_fetcher.h" |
#include "net/url_request/url_request_context_getter.h" |
#include "third_party/hunspell/google/bdict.h" |
#include "ui/base/l10n/l10n_util.h" |
@@ -283,8 +283,8 @@ void SpellCheckHostImpl::DownloadDictionary() { |
} |
GURL url = GURL(std::string(kDownloadServerUrl) + |
StringToLowerASCII(bdict_file)); |
- fetcher_.reset(content::URLFetcher::Create(url, net::URLFetcher::GET, |
- weak_ptr_factory_.GetWeakPtr())); |
+ fetcher_.reset(net::URLFetcher::Create(url, net::URLFetcher::GET, |
+ weak_ptr_factory_.GetWeakPtr())); |
fetcher_->SetRequestContext(request_context_getter_); |
fetcher_->SetLoadFlags( |
net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES); |