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

Unified Diff: chrome/browser/chromeos/imageburner/burn_manager.cc

Issue 10392192: Remove content::URLFetcherDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cleanup 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/chromeos/imageburner/burn_manager.cc
diff --git a/chrome/browser/chromeos/imageburner/burn_manager.cc b/chrome/browser/chromeos/imageburner/burn_manager.cc
index 5b0a61db5094f35cb87d73f02ab8a6183100bc98..775a2e0dcd01bc30629f84f83f546514eeaa988a 100644
--- a/chrome/browser/chromeos/imageburner/burn_manager.cc
+++ b/chrome/browser/chromeos/imageburner/burn_manager.cc
@@ -282,7 +282,7 @@ void BurnManager::FetchConfigFile(Delegate* delegate) {
return;
config_fetcher_.reset(content::URLFetcher::Create(
- config_file_url_, content::URLFetcher::GET, this));
+ config_file_url_, net::URLFetcher::GET, this));
config_fetcher_->SetRequestContext(
g_browser_process->system_request_context());
config_fetcher_->Start();
@@ -292,7 +292,7 @@ void BurnManager::FetchImage(const GURL& image_url, const FilePath& file_path) {
tick_image_download_start_ = base::TimeTicks::Now();
bytes_image_download_progress_last_reported_ = 0;
image_fetcher_.reset(content::URLFetcher::Create(image_url,
- content::URLFetcher::GET,
+ net::URLFetcher::GET,
this));
image_fetcher_->SetRequestContext(
g_browser_process->system_request_context());
« no previous file with comments | « chrome/browser/chromeos/imageburner/burn_manager.h ('k') | chrome/browser/chromeos/login/auth_response_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698