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

Unified Diff: trunk/src/webkit/browser/appcache/appcache_update_job.cc

Issue 197463003: Revert 256579 "Allow the content browser client to specify a spe..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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: trunk/src/webkit/browser/appcache/appcache_update_job.cc
===================================================================
--- trunk/src/webkit/browser/appcache/appcache_update_job.cc (revision 256581)
+++ trunk/src/webkit/browser/appcache/appcache_update_job.cc (working copy)
@@ -112,7 +112,7 @@
retry_503_attempts_(0),
buffer_(new net::IOBuffer(kBufferSize)),
request_(job->service_->request_context()
- ->CreateRequest(url, net::DEFAULT_PRIORITY, this, NULL)),
+ ->CreateRequest(url, net::DEFAULT_PRIORITY, this)),
result_(UPDATE_OK) {}
AppCacheUpdateJob::URLFetcher::~URLFetcher() {
@@ -314,7 +314,7 @@
++retry_503_attempts_;
result_ = UPDATE_OK;
request_ = job_->service_->request_context()->CreateRequest(
- url_, net::DEFAULT_PRIORITY, this, NULL);
+ url_, net::DEFAULT_PRIORITY, this);
Start();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698