Index: chrome/browser/chromeos/customization_document.cc |
diff --git a/chrome/browser/chromeos/customization_document.cc b/chrome/browser/chromeos/customization_document.cc |
index cd7ac2e37503fe0d138d92ee7d1298e63ebe25ed..932ec75268e9270ab0a5bf1fe4e7a99c62a1666f 100644 |
--- a/chrome/browser/chromeos/customization_document.cc |
+++ b/chrome/browser/chromeos/customization_document.cc |
@@ -22,7 +22,7 @@ |
#include "chrome/browser/prefs/pref_service.h" |
#include "chrome/browser/profiles/profile_manager.h" |
#include "content/public/browser/browser_thread.h" |
-#include "content/public/common/url_fetcher.h" |
+#include "net/url_request/url_fetcher.h" |
using content::BrowserThread; |
@@ -295,7 +295,7 @@ void ServicesCustomizationDocument::ReadFileInBackground(const FilePath& file) { |
void ServicesCustomizationDocument::StartFileFetch() { |
DCHECK(url_.is_valid()); |
- url_fetcher_.reset(content::URLFetcher::Create( |
+ url_fetcher_.reset(net::URLFetcher::Create( |
url_, net::URLFetcher::GET, this)); |
url_fetcher_->SetRequestContext( |
ProfileManager::GetDefaultProfile()->GetRequestContext()); |