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

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..8a19d98f03b8a0572e57a4a4f1fd57e659986495 100644
--- a/content/browser/renderer_host/p2p/socket_host_tcp_server.cc
+++ b/content/browser/renderer_host/p2p/socket_host_tcp_server.cc
@@ -17,6 +17,8 @@ namespace {
const int kListenBacklog = 5;
} // namespace
+namespace content {
+
P2PSocketHostTcpServer::P2PSocketHostTcpServer(
IPC::Message::Sender* message_sender,
int routing_id, int id)
@@ -135,3 +137,5 @@ P2PSocketHost* P2PSocketHostTcpServer::AcceptIncomingTcpConnection(
return result.release();
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698