Chromium Code Reviews| 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 |