| Index: remoting/protocol/webrtc_transport_unittest.cc
|
| diff --git a/remoting/protocol/webrtc_transport_unittest.cc b/remoting/protocol/webrtc_transport_unittest.cc
|
| index a2200c03cff9380d4f97d92415c7caea48412b1e..fc0b96b2f95e92891d5fdb8ba35c6a26dbc74ac4 100644
|
| --- a/remoting/protocol/webrtc_transport_unittest.cc
|
| +++ b/remoting/protocol/webrtc_transport_unittest.cc
|
| @@ -183,16 +183,15 @@ class WebrtcTransportTest : public testing::Test {
|
| new WebrtcTransport(jingle_glue::JingleThreadWrapper::current(),
|
| TransportContext::ForTests(TransportRole::SERVER),
|
| &host_event_handler_));
|
| - host_authenticator_.reset(new FakeAuthenticator(
|
| - FakeAuthenticator::HOST, 0, FakeAuthenticator::ACCEPT, false));
|
| + host_authenticator_.reset(new FakeAuthenticator(FakeAuthenticator::ACCEPT));
|
| host_authenticator_->set_auth_key(kAuthKey);
|
|
|
| client_transport_.reset(
|
| new WebrtcTransport(jingle_glue::JingleThreadWrapper::current(),
|
| TransportContext::ForTests(TransportRole::CLIENT),
|
| &client_event_handler_));
|
| - client_authenticator_.reset(new FakeAuthenticator(
|
| - FakeAuthenticator::CLIENT, 0, FakeAuthenticator::ACCEPT, false));
|
| + client_authenticator_.reset(
|
| + new FakeAuthenticator(FakeAuthenticator::ACCEPT));
|
| client_authenticator_->set_auth_key(kAuthKey);
|
| }
|
|
|
|
|