Chromium Code Reviews| Index: content/renderer/p2p/p2p_transport_impl_unittest.cc |
| diff --git a/content/renderer/p2p/p2p_transport_impl_unittest.cc b/content/renderer/p2p/p2p_transport_impl_unittest.cc |
| index acbf888941459c955b321a9c79e65a79570c2b2c..b708852e722d856ad694b91e2585e1d03f34f4d1 100644 |
| --- a/content/renderer/p2p/p2p_transport_impl_unittest.cc |
| +++ b/content/renderer/p2p/p2p_transport_impl_unittest.cc |
| @@ -2,11 +2,12 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "content/renderer/p2p/p2p_transport_impl.h" |
| + |
| #include "base/compiler_specific.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/message_loop.h" |
| #include "base/test/test_timeouts.h" |
| -#include "content/renderer/p2p/p2p_transport_impl.h" |
| #include "jingle/glue/fake_network_manager.h" |
| #include "jingle/glue/fake_socket_factory.h" |
| #include "jingle/glue/thread_wrapper.h" |
| @@ -25,6 +26,8 @@ using testing::InvokeWithoutArgs; |
| using webkit_glue::P2PTransport; |
| +namespace content { |
| + |
| namespace { |
|
jam
2011/08/24 00:24:27
ditto
Sergey Ulanov
2011/08/24 01:57:48
Done.
|
| const char kTestAddress1[] = "192.168.15.12"; |
| const char kTestAddress2[] = "192.168.15.33"; |
| @@ -483,3 +486,5 @@ TEST_F(P2PTransportImplTest, SendDataTcp) { |
| message_loop_.Run(); |
| channel_tester->CheckResults(); |
| } |
| + |
| +} // namespace content |