| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/protocol/authenticator_test_base.h" | 5 #include "remoting/protocol/authenticator_test_base.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
| 12 #include "base/test/test_timeouts.h" | 12 #include "base/test/test_timeouts.h" |
| 13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
| 14 #include "net/base/net_errors.h" | 14 #include "net/base/net_errors.h" |
| 15 #include "net/base/test_data_directory.h" | 15 #include "net/test/test_data_directory.h" |
| 16 #include "remoting/base/rsa_key_pair.h" | 16 #include "remoting/base/rsa_key_pair.h" |
| 17 #include "remoting/protocol/authenticator.h" | 17 #include "remoting/protocol/authenticator.h" |
| 18 #include "remoting/protocol/channel_authenticator.h" | 18 #include "remoting/protocol/channel_authenticator.h" |
| 19 #include "remoting/protocol/fake_stream_socket.h" | 19 #include "remoting/protocol/fake_stream_socket.h" |
| 20 #include "remoting/protocol/p2p_stream_socket.h" | 20 #include "remoting/protocol/p2p_stream_socket.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" | 22 #include "third_party/webrtc/libjingle/xmllite/xmlelement.h" |
| 23 | 23 |
| 24 using testing::_; | 24 using testing::_; |
| 25 using testing::SaveArg; | 25 using testing::SaveArg; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 void AuthenticatorTestBase::OnClientConnected( | 169 void AuthenticatorTestBase::OnClientConnected( |
| 170 int error, | 170 int error, |
| 171 std::unique_ptr<P2PStreamSocket> socket) { | 171 std::unique_ptr<P2PStreamSocket> socket) { |
| 172 client_callback_.OnDone(error); | 172 client_callback_.OnDone(error); |
| 173 client_socket_ = std::move(socket); | 173 client_socket_ = std::move(socket); |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace protocol | 176 } // namespace protocol |
| 177 } // namespace remoting | 177 } // namespace remoting |
| OLD | NEW |