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

Unified Diff: content/renderer/p2p/ipc_socket_factory.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/renderer/p2p/ipc_socket_factory.cc
diff --git a/content/renderer/p2p/ipc_socket_factory.cc b/content/renderer/p2p/ipc_socket_factory.cc
index c579433bf119d2ea63a16a5305e2994354bd7f02..64cc3e02e71069fd4621b0dc33f575b0647b0fc3 100644
--- a/content/renderer/p2p/ipc_socket_factory.cc
+++ b/content/renderer/p2p/ipc_socket_factory.cc
@@ -12,6 +12,8 @@
#include "jingle/glue/utils.h"
#include "third_party/libjingle/source/talk/base/asyncpacketsocket.h"
+namespace content {
+
namespace {
jam 2011/08/24 00:24:27 ditto
Sergey Ulanov 2011/08/24 01:57:48 Putting this code in content namespace makets it s
jam 2011/08/24 16:30:53 it seems a little odd having an anonymous namespac
Sergey Ulanov 2011/08/24 17:35:12 Actually there is a lot of code in chrome that def
jam 2011/08/24 23:38:42 to be clear, I didn't say it caused problems. if t
// IpcPacketSocket implements talk_base::AsyncPacketSocket interface
@@ -362,3 +364,5 @@ talk_base::AsyncPacketSocket* IpcPacketSocketFactory::CreateClientTcpSocket(
return NULL;
return socket.release();
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698