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

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

Issue 7715020: Move P2P code to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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/p2p/socket_host_tcp_server.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc
index 91140bec42a23d8d30321c70b2188a402680f6cb..8b087e3096693567dfa523077f069b2d3d740caf 100644
--- a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc
+++ b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc
@@ -13,6 +13,8 @@
#include "net/base/sys_addrinfo.h"
#include "net/socket/stream_socket.h"
+namespace content {
+
namespace {
jam 2011/08/24 00:24:27 ditto
Sergey Ulanov 2011/08/24 01:57:48 Done.
const int kListenBacklog = 5;
} // namespace
@@ -135,3 +137,5 @@ P2PSocketHost* P2PSocketHostTcpServer::AcceptIncomingTcpConnection(
return result.release();
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698