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 565e448d0a3ca93afc41314a61d042f9224d5efc..3ad540d6c94679fbcdecc7ce8991938589fb9f6e 100644 |
--- a/content/browser/renderer_host/socket_stream_dispatcher_host.cc |
+++ b/content/browser/renderer_host/socket_stream_dispatcher_host.cc |
@@ -68,7 +68,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"; |
Randy Smith (Not in Mondays)
2011/05/03 21:30:41
Ditto. This is a fine fix, but I don't think it b
ahendrickson
2011/05/04 15:08:25
If I don't do it in this CL, I'll forget about it.
|
return; |
} |
if (!Send(new SocketStreamMsg_SentData(socket_id, amount_sent))) { |