Chromium Code Reviews| Index: content/browser/renderer_host/p2p/socket_host.cc |
| diff --git a/content/browser/renderer_host/p2p/socket_host.cc b/content/browser/renderer_host/p2p/socket_host.cc |
| index 09942876a2a4b2c7caf07f7415bfa77f982efa59..bb53512d0125fa8bac37043ffade387cee9aa40f 100644 |
| --- a/content/browser/renderer_host/p2p/socket_host.cc |
| +++ b/content/browser/renderer_host/p2p/socket_host.cc |
| @@ -9,6 +9,8 @@ |
| #include "content/browser/renderer_host/p2p/socket_host_tcp_server.h" |
| #include "content/browser/renderer_host/p2p/socket_host_udp.h" |
| +namespace content { |
| + |
| namespace { |
|
jam
2011/08/24 00:24:27
no need for this to be in content namespace
Sergey Ulanov
2011/08/24 01:57:48
Done.
|
| const int kStunHeaderSize = 20; |
| const uint32 kStunMagicCookie = 0x2112A442; |
| @@ -89,3 +91,5 @@ P2PSocketHost* P2PSocketHost::Create( |
| NOTREACHED(); |
| return NULL; |
| } |
| + |
| +} // namespace content |