| 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/bind_helpers.h" | 6 #include "base/bind_helpers.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop_proxy.h" | 8 #include "base/message_loop_proxy.h" |
| 9 #include "remoting/base/auto_thread_task_runner.h" | 9 #include "remoting/base/auto_thread_task_runner.h" |
| 10 #include "remoting/jingle_glue/mock_objects.h" | 10 #include "remoting/capturer/video_frame_capturer_fake.h" |
| 11 #include "remoting/host/audio_capturer.h" | 11 #include "remoting/host/audio_capturer.h" |
| 12 #include "remoting/host/chromoting_host.h" |
| 12 #include "remoting/host/chromoting_host_context.h" | 13 #include "remoting/host/chromoting_host_context.h" |
| 13 #include "remoting/host/chromoting_host.h" | |
| 14 #include "remoting/host/desktop_environment.h" | 14 #include "remoting/host/desktop_environment.h" |
| 15 #include "remoting/host/desktop_environment_factory.h" | 15 #include "remoting/host/desktop_environment_factory.h" |
| 16 #include "remoting/host/event_executor_fake.h" | 16 #include "remoting/host/event_executor_fake.h" |
| 17 #include "remoting/host/host_mock_objects.h" | 17 #include "remoting/host/host_mock_objects.h" |
| 18 #include "remoting/host/it2me_host_user_interface.h" | 18 #include "remoting/host/it2me_host_user_interface.h" |
| 19 #include "remoting/host/video_frame_capturer_fake.h" | 19 #include "remoting/jingle_glue/mock_objects.h" |
| 20 #include "remoting/proto/video.pb.h" | 20 #include "remoting/proto/video.pb.h" |
| 21 #include "remoting/protocol/errors.h" | 21 #include "remoting/protocol/errors.h" |
| 22 #include "remoting/protocol/protocol_mock_objects.h" | 22 #include "remoting/protocol/protocol_mock_objects.h" |
| 23 #include "remoting/protocol/session_config.h" | 23 #include "remoting/protocol/session_config.h" |
| 24 #include "testing/gmock_mutant.h" | 24 #include "testing/gmock_mutant.h" |
| 25 #include "testing/gmock/include/gmock/gmock.h" | 25 #include "testing/gmock/include/gmock/gmock.h" |
| 26 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
| 27 | 27 |
| 28 using ::remoting::protocol::MockClientStub; | 28 using ::remoting::protocol::MockClientStub; |
| 29 using ::remoting::protocol::MockConnectionToClient; | 29 using ::remoting::protocol::MockConnectionToClient; |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 ExpectClientDisconnected(0, true, video_packet_sent, | 690 ExpectClientDisconnected(0, true, video_packet_sent, |
| 691 InvokeWithoutArgs(this, &ChromotingHostTest::ShutdownHost)); | 691 InvokeWithoutArgs(this, &ChromotingHostTest::ShutdownHost)); |
| 692 EXPECT_CALL(host_status_observer_, OnShutdown()); | 692 EXPECT_CALL(host_status_observer_, OnShutdown()); |
| 693 | 693 |
| 694 host_->Start(xmpp_login_); | 694 host_->Start(xmpp_login_); |
| 695 SimulateClientConnection(0, true, false); | 695 SimulateClientConnection(0, true, false); |
| 696 message_loop_.Run(); | 696 message_loop_.Run(); |
| 697 } | 697 } |
| 698 | 698 |
| 699 } // namespace remoting | 699 } // namespace remoting |
| OLD | NEW |