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

Unified Diff: content/renderer/p2p/p2p_transport_impl_unittest.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/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

Powered by Google App Engine
This is Rietveld 408576698