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/capturer/video_frame_capturer_fake.h" | 10 #include "remoting/capturer/video_frame_capturer_fake.h" |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 scoped_refptr<ClientSession> client = new ClientSession( | 237 scoped_refptr<ClientSession> client = new ClientSession( |
238 host_.get(), | 238 host_.get(), |
239 ui_task_runner_, // Audio | 239 ui_task_runner_, // Audio |
240 ui_task_runner_, // Video capture | 240 ui_task_runner_, // Video capture |
241 ui_task_runner_, // Video encode | 241 ui_task_runner_, // Video encode |
242 ui_task_runner_, // Network | 242 ui_task_runner_, // Network |
243 connection.Pass(), | 243 connection.Pass(), |
244 desktop_environment_factory_.get(), | 244 desktop_environment_factory_.get(), |
245 base::TimeDelta()); | 245 base::TimeDelta()); |
246 connection_ptr->set_host_stub(client); | 246 connection_ptr->set_host_stub(client); |
247 connection_ptr->set_input_stub( | |
248 client->desktop_environment()->event_executor()); | |
249 | 247 |
250 ui_task_runner_->PostTask( | 248 ui_task_runner_->PostTask( |
251 FROM_HERE, base::Bind(&ChromotingHostTest::AddClientToHost, | 249 FROM_HERE, base::Bind(&ChromotingHostTest::AddClientToHost, |
252 host_, client)); | 250 host_, client)); |
253 | 251 |
254 if (authenticate) { | 252 if (authenticate) { |
255 ui_task_runner_->PostTask( | 253 ui_task_runner_->PostTask( |
256 FROM_HERE, base::Bind(&ClientSession::OnConnectionAuthenticated, | 254 FROM_HERE, base::Bind(&ClientSession::OnConnectionAuthenticated, |
257 client, connection_ptr)); | 255 client, connection_ptr)); |
258 if (!reject) { | 256 if (!reject) { |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 ExpectClientDisconnected(0, true, video_packet_sent, | 688 ExpectClientDisconnected(0, true, video_packet_sent, |
691 InvokeWithoutArgs(this, &ChromotingHostTest::ShutdownHost)); | 689 InvokeWithoutArgs(this, &ChromotingHostTest::ShutdownHost)); |
692 EXPECT_CALL(host_status_observer_, OnShutdown()); | 690 EXPECT_CALL(host_status_observer_, OnShutdown()); |
693 | 691 |
694 host_->Start(xmpp_login_); | 692 host_->Start(xmpp_login_); |
695 SimulateClientConnection(0, true, false); | 693 SimulateClientConnection(0, true, false); |
696 message_loop_.Run(); | 694 message_loop_.Run(); |
697 } | 695 } |
698 | 696 |
699 } // namespace remoting | 697 } // namespace remoting |
OLD | NEW |