| 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..7e1c07d039d57055e8e03a9bff0270ad1070b14a 100644
|
| --- a/content/renderer/p2p/p2p_transport_impl_unittest.cc
|
| +++ b/content/renderer/p2p/p2p_transport_impl_unittest.cc
|
| @@ -32,8 +32,6 @@ const char kTestAddress2[] = "192.168.15.33";
|
| const char kTransportName1[] = "tr1";
|
| const char kTransportName2[] = "tr2";
|
|
|
| -const char kTestConfig[] = "";
|
| -
|
| // Send 10 packets 10 bytes each. Packets are sent with 10ms delay
|
| // between packets (about 100 ms for 10 messages).
|
| const int kMessageSize = 10;
|
| @@ -350,10 +348,11 @@ class P2PTransportImplTest : public testing::Test {
|
| }
|
|
|
| void Init(P2PTransport::Protocol protocol) {
|
| + P2PTransport::Config config;
|
| ASSERT_TRUE(transport1_->Init(
|
| - kTransportName1, protocol, kTestConfig, &event_handler1_));
|
| + kTransportName1, protocol, config, &event_handler1_));
|
| ASSERT_TRUE(transport2_->Init(
|
| - kTransportName2, protocol, kTestConfig, &event_handler2_));
|
| + kTransportName2, protocol, config, &event_handler2_));
|
| }
|
|
|
| MessageLoop message_loop_;
|
|
|