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

Unified Diff: webkit/appcache/appcache_request_handler.cc

Issue 3187017: When an individual entry is lost from the appache's diskcache, attempts to lo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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
« no previous file with comments | « no previous file | webkit/appcache/appcache_url_request_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_request_handler.cc
===================================================================
--- webkit/appcache/appcache_request_handler.cc (revision 57090)
+++ webkit/appcache/appcache_request_handler.cc (working copy)
@@ -53,7 +53,8 @@
// which will call thru to our interception layer again.
// This time thru, we return NULL so the request hits the wire.
if (job_) {
- DCHECK(job_->is_delivering_network_response());
+ DCHECK(job_->is_delivering_network_response() ||
+ job_->cache_entry_not_found());
job_ = NULL;
return NULL;
}
« no previous file with comments | « no previous file | webkit/appcache/appcache_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698