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

Unified Diff: webkit/glue/weburlloader_impl.cc

Issue 8863002: Revert 110505 - Report ERR_CONTENT_LENGTH_MISMATCH when the count of bytes received doesn't match... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | « net/url_request/url_request_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/weburlloader_impl.cc
===================================================================
--- webkit/glue/weburlloader_impl.cc (revision 113482)
+++ webkit/glue/weburlloader_impl.cc (working copy)
@@ -608,7 +608,7 @@
}
void WebURLLoaderImpl::Context::OnCompletedRequest(
- const net::URLRequestStatus& original_status,
+ const net::URLRequestStatus& status,
const std::string& security_info,
const base::Time& completion_time) {
if (ftp_listing_delegate_.get()) {
@@ -619,16 +619,6 @@
multipart_delegate_.reset(NULL);
}
- net::URLRequestStatus status = original_status;
-
- // Rewrite the Content-Length mismatch as a success.
- // See crbug.com/52847 for justification.
- if (status.status() != net::URLRequestStatus::SUCCESS &&
- status.error() == net::ERR_CONTENT_LENGTH_MISMATCH) {
- status.set_status(net::URLRequestStatus::SUCCESS);
- status.set_error(net::OK);
- }
-
// Prevent any further IPC to the browser now that we're complete, but
// don't delete it to keep any downloaded temp files alive.
DCHECK(!completed_bridge_.get());
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698