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: webkit/browser/appcache/appcache_update_job.cc

Issue 188693003: Allow the content browser client to specify a special cookie store to be (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: added two new files that i previously forgot to add 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: webkit/browser/appcache/appcache_update_job.cc
===================================================================
--- webkit/browser/appcache/appcache_update_job.cc (revision 255909)
+++ 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)),
+ ->CreateRequest(url, net::DEFAULT_PRIORITY, this, NULL)),
mmenke 2014/03/12 16:43:00 This does seem right, but it's a way that prerende
tburkard 2014/03/12 16:51:32 Ack, nothing to do here.
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);
+ url_, net::DEFAULT_PRIORITY, this, NULL);
Start();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698