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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp.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_udp.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp.cc b/content/browser/renderer_host/p2p/socket_host_udp.cc
index e03af8e5731adf43f2cf99d344e64219358bf27e..1e082729ad7b3bb4bd958a2ed2d16a58419537fa 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp.cc
@@ -16,6 +16,8 @@ const int kReadBufferSize = 65536;
} // namespace
+namespace content {
+
P2PSocketHostUdp::P2PSocketHostUdp(IPC::Message::Sender* message_sender,
int routing_id, int id)
: P2PSocketHost(message_sender, routing_id, id),
@@ -169,3 +171,5 @@ P2PSocketHost* P2PSocketHostUdp::AcceptIncomingTcpConnection(
OnError();
return NULL;
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698