Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ChromeOS, address comments Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc
diff --git a/chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc b/chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc
index 85377d63820a16a2239caa1dc4273008bc351abe..660c86da08065f123a547c4d1dea28211434c596 100644
--- a/chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc
+++ b/chrome/browser/ui/webui/ntp/suggestions_source_discovery.cc
@@ -68,7 +68,7 @@ void SuggestionsSourceDiscovery::FetchItems(Profile* profile) {
// TODO(beaudoin): Extract the URL to some preference. Use a better service.
recommended_fetcher_.reset(content::URLFetcher::Create(
- GURL(kDiscoveryBackendURL), content::URLFetcher::GET, this));
+ GURL(kDiscoveryBackendURL), net::URLFetcher::GET, this));
recommended_fetcher_->SetRequestContext(
g_browser_process->system_request_context());
recommended_fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES |

Powered by Google App Engine
This is Rietveld 408576698