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

Unified Diff: webkit/child/webkitplatformsupport_impl.cc

Issue 138513002: Plumb network stack information about existence of cached copy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporated rest of Matt's comments. Created 6 years, 11 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/child/webkitplatformsupport_impl.cc
diff --git a/webkit/child/webkitplatformsupport_impl.cc b/webkit/child/webkitplatformsupport_impl.cc
index 5b70672ffc103033b1893bcf5da8744b54ea811a..939698c511bb3d3b93df268035bd39e0a1400fcb 100644
--- a/webkit/child/webkitplatformsupport_impl.cc
+++ b/webkit/child/webkitplatformsupport_impl.cc
@@ -411,7 +411,7 @@ WebData WebKitPlatformSupportImpl::parseDataURL(
WebURLError WebKitPlatformSupportImpl::cancelledError(
const WebURL& unreachableURL) const {
- return WebURLLoaderImpl::CreateError(unreachableURL, net::ERR_ABORTED);
+ return WebURLLoaderImpl::CreateError(unreachableURL, false, net::ERR_ABORTED);
}
void WebKitPlatformSupportImpl::decrementStatsCounter(const char* name) {

Powered by Google App Engine
This is Rietveld 408576698