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

Unified Diff: content/browser/renderer_host/p2p/socket_host_tcp.cc

Issue 9873037: P2P TCP SocketServer changes to allow accept callback object reset before calling (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/p2p/socket_host_tcp.cc
===================================================================
--- content/browser/renderer_host/p2p/socket_host_tcp.cc (revision 129437)
+++ content/browser/renderer_host/p2p/socket_host_tcp.cc (working copy)
@@ -88,7 +88,7 @@
return;
}
- if (socket_->SetSendBufferSize(kMaxSendBufferSize)) {
+ if (!socket_->SetSendBufferSize(kMaxSendBufferSize)) {
LOG(WARNING) << "Failed to set send buffer size for TCP socket.";
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698