| 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/jingle_session.h" | 5 #include "remoting/protocol/jingle_session.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "base/test/test_timeouts.h" | 10 #include "base/test/test_timeouts.h" |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "jingle/glue/thread_wrapper.h" | 12 #include "jingle/glue/thread_wrapper.h" |
| 13 #include "net/socket/socket.h" | 13 #include "net/socket/socket.h" |
| 14 #include "net/socket/stream_socket.h" | 14 #include "net/socket/stream_socket.h" |
| 15 #include "net/url_request/url_request_context_getter.h" | 15 #include "net/url_request/url_request_context_getter.h" |
| 16 #include "remoting/base/constants.h" | 16 #include "remoting/base/constants.h" |
| 17 #include "remoting/jingle_glue/chromium_port_allocator.h" | |
| 18 #include "remoting/jingle_glue/fake_signal_strategy.h" | |
| 19 #include "remoting/jingle_glue/network_settings.h" | |
| 20 #include "remoting/protocol/authenticator.h" | 17 #include "remoting/protocol/authenticator.h" |
| 21 #include "remoting/protocol/channel_authenticator.h" | 18 #include "remoting/protocol/channel_authenticator.h" |
| 19 #include "remoting/protocol/chromium_port_allocator.h" |
| 22 #include "remoting/protocol/connection_tester.h" | 20 #include "remoting/protocol/connection_tester.h" |
| 23 #include "remoting/protocol/fake_authenticator.h" | 21 #include "remoting/protocol/fake_authenticator.h" |
| 24 #include "remoting/protocol/jingle_session_manager.h" | 22 #include "remoting/protocol/jingle_session_manager.h" |
| 25 #include "remoting/protocol/libjingle_transport_factory.h" | 23 #include "remoting/protocol/libjingle_transport_factory.h" |
| 24 #include "remoting/protocol/network_settings.h" |
| 25 #include "remoting/signaling/fake_signal_strategy.h" |
| 26 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
| 27 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
| 28 | 28 |
| 29 using testing::_; | 29 using testing::_; |
| 30 using testing::AtLeast; | 30 using testing::AtLeast; |
| 31 using testing::AtMost; | 31 using testing::AtMost; |
| 32 using testing::DeleteArg; | 32 using testing::DeleteArg; |
| 33 using testing::DoAll; | 33 using testing::DoAll; |
| 34 using testing::InSequence; | 34 using testing::InSequence; |
| 35 using testing::Invoke; | 35 using testing::Invoke; |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 .Times(AtMost(1)); | 514 .Times(AtMost(1)); |
| 515 ExpectRouteChange(kChannelName); | 515 ExpectRouteChange(kChannelName); |
| 516 | 516 |
| 517 message_loop_->Run(); | 517 message_loop_->Run(); |
| 518 | 518 |
| 519 EXPECT_TRUE(!host_socket_.get()); | 519 EXPECT_TRUE(!host_socket_.get()); |
| 520 } | 520 } |
| 521 | 521 |
| 522 } // namespace protocol | 522 } // namespace protocol |
| 523 } // namespace remoting | 523 } // namespace remoting |
| OLD | NEW |