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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp_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/browser/renderer_host/p2p/socket_host_udp_unittest.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
index e40d28842bc720c4c8fb8067aa2af96c13dd80b1..b849b0f1eedf4876ddc61a73c44ad1f8c964488e 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp_unittest.cc
@@ -21,6 +21,8 @@ using ::testing::DeleteArg;
using ::testing::DoAll;
using ::testing::Return;
+namespace content {
+
namespace {
jam 2011/08/24 00:24:27 ditto
Sergey Ulanov 2011/08/24 01:57:48 Done.
class FakeDatagramServerSocket : public net::DatagramServerSocket {
@@ -236,3 +238,5 @@ TEST_F(P2PSocketHostUdpTest, SendAfterStunResponseDifferentHost) {
.WillOnce(DoAll(DeleteArg<0>(), Return(true)));
socket_host_->Send(dest2_, packet);
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698