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

Unified Diff: content/browser/renderer_host/socket_stream_dispatcher_host.cc

Issue 6881106: Treat ERR_CONNECTION_CLOSED as end-of-data marker for downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 9 years, 7 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: content/browser/renderer_host/socket_stream_dispatcher_host.cc
diff --git a/content/browser/renderer_host/socket_stream_dispatcher_host.cc b/content/browser/renderer_host/socket_stream_dispatcher_host.cc
index 00f4d01057eb2c98f42563a6b7660ebc246bb54e..fc293356c083dee89d0c2c65a09aabf6d1db0b6c 100644
--- a/content/browser/renderer_host/socket_stream_dispatcher_host.cc
+++ b/content/browser/renderer_host/socket_stream_dispatcher_host.cc
@@ -72,7 +72,7 @@ void SocketStreamDispatcherHost::OnSentData(net::SocketStream* socket,
DVLOG(1) << "SocketStreamDispatcherHost::OnSentData socket_id=" << socket_id
<< " amount_sent=" << amount_sent;
if (socket_id == content_common::kNoSocketId) {
- LOG(ERROR) << "NoSocketId in OnReceivedData";
+ LOG(ERROR) << "NoSocketId in OnSentData";
return;
}
if (!Send(new SocketStreamMsg_SentData(socket_id, amount_sent))) {

Powered by Google App Engine
This is Rietveld 408576698