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/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
7 #include "base/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
8 #include "remoting/jingle_glue/mock_objects.h" | 8 #include "remoting/jingle_glue/mock_objects.h" |
9 #include "remoting/host/capturer_fake.h" | 9 #include "remoting/host/capturer_fake.h" |
10 #include "remoting/host/chromoting_host.h" | 10 #include "remoting/host/chromoting_host.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 scoped_ptr<Capturer> capturer(new CapturerFake()); | 89 scoped_ptr<Capturer> capturer(new CapturerFake()); |
90 event_executor_ = new MockEventExecutor(); | 90 event_executor_ = new MockEventExecutor(); |
91 desktop_environment_ = DesktopEnvironment::CreateFake( | 91 desktop_environment_ = DesktopEnvironment::CreateFake( |
92 &context_, | 92 &context_, |
93 capturer.Pass(), | 93 capturer.Pass(), |
94 scoped_ptr<protocol::HostEventStub>(event_executor_)); | 94 scoped_ptr<protocol::HostEventStub>(event_executor_)); |
95 | 95 |
96 host_ = new ChromotingHost( | 96 host_ = new ChromotingHost( |
97 &context_, &signal_strategy_, desktop_environment_.get(), | 97 &context_, &signal_strategy_, desktop_environment_.get(), |
98 protocol::NetworkSettings()); | 98 NetworkSettings()); |
99 | 99 |
100 disconnect_window_ = new MockDisconnectWindow(); | 100 disconnect_window_ = new MockDisconnectWindow(); |
101 continue_window_ = new MockContinueWindow(); | 101 continue_window_ = new MockContinueWindow(); |
102 local_input_monitor_ = new MockLocalInputMonitor(); | 102 local_input_monitor_ = new MockLocalInputMonitor(); |
103 it2me_host_user_interface_.reset(new It2MeHostUserInterface(host_, | 103 it2me_host_user_interface_.reset(new It2MeHostUserInterface(host_, |
104 &context_)); | 104 &context_)); |
105 it2me_host_user_interface_->InitFrom( | 105 it2me_host_user_interface_->InitFrom( |
106 scoped_ptr<DisconnectWindow>(disconnect_window_), | 106 scoped_ptr<DisconnectWindow>(disconnect_window_), |
107 scoped_ptr<ContinueWindow>(continue_window_), | 107 scoped_ptr<ContinueWindow>(continue_window_), |
108 scoped_ptr<LocalInputMonitor>(local_input_monitor_)); | 108 scoped_ptr<LocalInputMonitor>(local_input_monitor_)); |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 EXPECT_CALL(*connection_, Disconnect()) | 374 EXPECT_CALL(*connection_, Disconnect()) |
375 .RetiresOnSaturation(); | 375 .RetiresOnSaturation(); |
376 EXPECT_CALL(*connection2_, Disconnect()) | 376 EXPECT_CALL(*connection2_, Disconnect()) |
377 .RetiresOnSaturation(); | 377 .RetiresOnSaturation(); |
378 | 378 |
379 SimulateClientConnection(0, true); | 379 SimulateClientConnection(0, true); |
380 message_loop_.Run(); | 380 message_loop_.Run(); |
381 } | 381 } |
382 | 382 |
383 } // namespace remoting | 383 } // namespace remoting |
OLD | NEW |