1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 #include "base/bind_helpers.h"
7 #include "base/callback.h"
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/process/process.h"
12 #include "base/process/process_handle.h"
13 #include "base/run_loop.h"
14 #include "ipc/ipc_channel.h"
15 #include "ipc/ipc_channel_proxy.h"
16 #include "ipc/ipc_listener.h"
17 #include "ipc/ipc_message.h"
18 #include "ipc/ipc_platform_file.h"
19 #include "remoting/base/auto_thread.h"
20 #include "remoting/base/auto_thread_task_runner.h"
21 #include "remoting/base/constants.h"
22 #include "remoting/host/chromoting_messages.h"
23 #include "remoting/host/desktop_process.h"
24 #include "remoting/host/desktop_session.h"
25 #include "remoting/host/desktop_session_connector.h"
26 #include "remoting/host/desktop_session_proxy.h"
27 #include "remoting/host/fake_mouse_cursor_monitor.h"
28 #include "remoting/host/fake_screen_capturer.h"
29 #include "remoting/host/host_mock_objects.h"
30 #include "remoting/host/ipc_desktop_environment.h"
31 #include "remoting/protocol/protocol_mock_objects.h"
32 #include "testing/gmock/include/gmock/gmock.h"
33 #include "testing/gtest/include/gtest/gtest.h"
34 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
35 #include "third_party/webrtc/modules/desktop_capture/desktop_region.h"
36 #include "third_party/webrtc/modules/desktop_capture/screen_capturer_mock_objects.h"
39 using testing::AnyNumber
;
40 using testing::AtLeast
;
41 using testing::AtMost
;
42 using testing::DeleteArg
;
44 using testing::Return
;
45 using testing::ReturnRef
;
51 // Receives messages sent from the network process to the daemon.
52 class FakeDaemonSender
: public IPC::Sender
{
55 virtual ~FakeDaemonSender() {}
57 // IPC::Sender implementation.
58 virtual bool Send(IPC::Message
* message
) OVERRIDE
;
60 MOCK_METHOD3(ConnectTerminal
, void(int, const ScreenResolution
&, bool));
61 MOCK_METHOD1(DisconnectTerminal
, void(int));
62 MOCK_METHOD2(SetScreenResolution
, void(int, const ScreenResolution
&));
65 void OnMessageReceived(const IPC::Message
& message
);
67 DISALLOW_COPY_AND_ASSIGN(FakeDaemonSender
);
70 // Receives messages sent from the desktop process to the daemon.
71 class MockDaemonListener
: public IPC::Listener
{
73 MockDaemonListener() {}
74 virtual ~MockDaemonListener() {}
76 virtual bool OnMessageReceived(const IPC::Message
& message
) OVERRIDE
;
78 MOCK_METHOD1(OnDesktopAttached
, void(IPC::PlatformFileForTransit
));
79 MOCK_METHOD1(OnChannelConnected
, void(int32
));
80 MOCK_METHOD0(OnChannelError
, void());
83 DISALLOW_COPY_AND_ASSIGN(MockDaemonListener
);
86 bool FakeDaemonSender::Send(IPC::Message
* message
) {
87 OnMessageReceived(*message
);
92 void FakeDaemonSender::OnMessageReceived(const IPC::Message
& message
) {
94 IPC_BEGIN_MESSAGE_MAP(FakeDaemonSender
, message
)
95 IPC_MESSAGE_HANDLER(ChromotingNetworkHostMsg_ConnectTerminal
,
97 IPC_MESSAGE_HANDLER(ChromotingNetworkHostMsg_DisconnectTerminal
,
99 IPC_MESSAGE_HANDLER(ChromotingNetworkDaemonMsg_SetScreenResolution
,
101 IPC_MESSAGE_UNHANDLED(handled
= false)
102 IPC_END_MESSAGE_MAP()
104 EXPECT_TRUE(handled
);
107 bool MockDaemonListener::OnMessageReceived(const IPC::Message
& message
) {
109 IPC_BEGIN_MESSAGE_MAP(MockDaemonListener
, message
)
110 IPC_MESSAGE_HANDLER(ChromotingDesktopDaemonMsg_DesktopAttached
,
112 IPC_MESSAGE_UNHANDLED(handled
= false)
113 IPC_END_MESSAGE_MAP()
115 EXPECT_TRUE(handled
);
121 class IpcDesktopEnvironmentTest
: public testing::Test
{
123 IpcDesktopEnvironmentTest();
124 virtual ~IpcDesktopEnvironmentTest();
126 virtual void SetUp() OVERRIDE
;
128 void ConnectTerminal(int terminal_id
,
129 const ScreenResolution
& resolution
,
130 bool virtual_terminal
);
131 void DisconnectTerminal(int terminal_id
);
133 // Creates a DesktopEnvironment with a fake webrtc::ScreenCapturer, to mock
134 // DesktopEnvironmentFactory::Create().
135 DesktopEnvironment
* CreateDesktopEnvironment();
137 // Creates a dummy InputInjector, to mock
138 // DesktopEnvironment::CreateInputInjector().
139 InputInjector
* CreateInputInjector();
141 // Creates a fake webrtc::ScreenCapturer, to mock
142 // DesktopEnvironment::CreateVideoCapturer().
143 webrtc::ScreenCapturer
* CreateVideoCapturer();
145 // Creates a MockMouseCursorMonitor, to mock
146 // DesktopEnvironment::CreateMouseCursorMonitor
147 webrtc::MouseCursorMonitor
* CreateMouseCursorMonitor();
149 void DeleteDesktopEnvironment();
151 // Forwards |event| to |clipboard_stub_|.
152 void ReflectClipboardEvent(const protocol::ClipboardEvent
& event
);
155 // Creates and starts an instance of desktop process object.
156 void CreateDesktopProcess();
158 // Destroys the desktop process object created by CreateDesktopProcess().
159 void DestoyDesktopProcess();
161 void OnDisconnectCallback();
163 // Invoked when ChromotingDesktopDaemonMsg_DesktopAttached message is
165 void OnDesktopAttached(IPC::PlatformFileForTransit desktop_pipe
);
167 // The main message loop.
168 base::MessageLoopForUI message_loop_
;
170 // Runs until |desktop_session_proxy_| is connected to the desktop.
171 scoped_ptr
<base::RunLoop
> setup_run_loop_
;
173 // Runs until there are references to |task_runner_|.
174 base::RunLoop main_run_loop_
;
176 scoped_refptr
<AutoThreadTaskRunner
> task_runner_
;
177 scoped_refptr
<AutoThreadTaskRunner
> io_task_runner_
;
179 std::string client_jid_
;
181 // Clipboard stub that receives clipboard events from the desktop process.
182 protocol::ClipboardStub
* clipboard_stub_
;
184 // The daemons's end of the daemon-to-desktop channel.
185 scoped_ptr
<IPC::ChannelProxy
> desktop_channel_
;
187 // Name of the daemon-to-desktop channel.
188 std::string desktop_channel_name_
;
190 // Delegate that is passed to |desktop_channel_|.
191 MockDaemonListener desktop_listener_
;
193 FakeDaemonSender daemon_channel_
;
195 scoped_ptr
<IpcDesktopEnvironmentFactory
> desktop_environment_factory_
;
196 scoped_ptr
<DesktopEnvironment
> desktop_environment_
;
198 // The IPC input injector.
199 scoped_ptr
<InputInjector
> input_injector_
;
201 // The IPC screen controls.
202 scoped_ptr
<ScreenControls
> screen_controls_
;
204 // The IPC screen capturer.
205 scoped_ptr
<webrtc::ScreenCapturer
> video_capturer_
;
207 // Represents the desktop process running in a user session.
208 scoped_ptr
<DesktopProcess
> desktop_process_
;
210 // Input injector owned by |desktop_process_|.
211 MockInputInjector
* remote_input_injector_
;
213 // The last |terminal_id| passed to ConnectTermina();
216 webrtc::MockScreenCapturerCallback screen_capturer_callback_
;
218 MockClientSessionControl client_session_control_
;
219 base::WeakPtrFactory
<ClientSessionControl
> client_session_control_factory_
;
222 IpcDesktopEnvironmentTest::IpcDesktopEnvironmentTest()
223 : client_jid_("user@domain/rest-of-jid"),
224 clipboard_stub_(NULL
),
225 remote_input_injector_(NULL
),
227 client_session_control_factory_(&client_session_control_
) {
230 IpcDesktopEnvironmentTest::~IpcDesktopEnvironmentTest() {
233 void IpcDesktopEnvironmentTest::SetUp() {
234 // Arrange to run |message_loop_| until no components depend on it.
235 task_runner_
= new AutoThreadTaskRunner(
236 message_loop_
.message_loop_proxy(), main_run_loop_
.QuitClosure());
238 io_task_runner_
= AutoThread::CreateWithType(
239 "IPC thread", task_runner_
, base::MessageLoop::TYPE_IO
);
241 setup_run_loop_
.reset(new base::RunLoop());
243 // Set expectation that the DaemonProcess will send DesktopAttached message
245 EXPECT_CALL(desktop_listener_
, OnChannelConnected(_
))
247 EXPECT_CALL(desktop_listener_
, OnDesktopAttached(_
))
249 .WillRepeatedly(Invoke(this,
250 &IpcDesktopEnvironmentTest::OnDesktopAttached
));
251 EXPECT_CALL(desktop_listener_
, OnChannelError())
253 .WillOnce(Invoke(this,
254 &IpcDesktopEnvironmentTest::DestoyDesktopProcess
));
256 // Intercept requests to connect and disconnect a terminal.
257 EXPECT_CALL(daemon_channel_
, ConnectTerminal(_
, _
, _
))
259 .WillRepeatedly(Invoke(this,
260 &IpcDesktopEnvironmentTest::ConnectTerminal
));
261 EXPECT_CALL(daemon_channel_
, DisconnectTerminal(_
))
263 .WillRepeatedly(Invoke(this,
264 &IpcDesktopEnvironmentTest::DisconnectTerminal
));
266 EXPECT_CALL(client_session_control_
, client_jid())
268 .WillRepeatedly(ReturnRef(client_jid_
));
269 EXPECT_CALL(client_session_control_
, DisconnectSession())
271 .WillRepeatedly(Invoke(
272 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
273 EXPECT_CALL(client_session_control_
, OnLocalMouseMoved(_
))
275 EXPECT_CALL(client_session_control_
, SetDisableInputs(_
))
278 // Create a desktop environment instance.
279 desktop_environment_factory_
.reset(new IpcDesktopEnvironmentFactory(
285 desktop_environment_
= desktop_environment_factory_
->Create(
286 client_session_control_factory_
.GetWeakPtr());
288 screen_controls_
= desktop_environment_
->CreateScreenControls();
290 // Create the input injector.
291 input_injector_
= desktop_environment_
->CreateInputInjector();
293 // Create the screen capturer.
295 desktop_environment_
->CreateVideoCapturer();
297 desktop_environment_
->SetCapabilities(std::string());
300 void IpcDesktopEnvironmentTest::ConnectTerminal(
302 const ScreenResolution
& resolution
,
303 bool virtual_terminal
) {
304 EXPECT_NE(terminal_id_
, terminal_id
);
306 terminal_id_
= terminal_id
;
307 CreateDesktopProcess();
310 void IpcDesktopEnvironmentTest::DisconnectTerminal(int terminal_id
) {
311 EXPECT_EQ(terminal_id_
, terminal_id
);
313 // The IPC desktop environment is fully destroyed now. Release the remaining
315 desktop_environment_factory_
.reset();
318 DesktopEnvironment
* IpcDesktopEnvironmentTest::CreateDesktopEnvironment() {
319 MockDesktopEnvironment
* desktop_environment
= new MockDesktopEnvironment();
320 EXPECT_CALL(*desktop_environment
, CreateAudioCapturerPtr())
322 EXPECT_CALL(*desktop_environment
, CreateInputInjectorPtr())
325 this, &IpcDesktopEnvironmentTest::CreateInputInjector
));
326 EXPECT_CALL(*desktop_environment
, CreateScreenControlsPtr())
328 EXPECT_CALL(*desktop_environment
, CreateVideoCapturerPtr())
331 this, &IpcDesktopEnvironmentTest::CreateVideoCapturer
));
332 EXPECT_CALL(*desktop_environment
, CreateMouseCursorMonitorPtr())
335 this, &IpcDesktopEnvironmentTest::CreateMouseCursorMonitor
));
336 EXPECT_CALL(*desktop_environment
, GetCapabilities())
338 EXPECT_CALL(*desktop_environment
, SetCapabilities(_
))
341 // Let tests know that the remote desktop environment is created.
342 message_loop_
.PostTask(FROM_HERE
, setup_run_loop_
->QuitClosure());
344 return desktop_environment
;
347 InputInjector
* IpcDesktopEnvironmentTest::CreateInputInjector() {
348 EXPECT_TRUE(remote_input_injector_
== NULL
);
349 remote_input_injector_
= new testing::StrictMock
<MockInputInjector
>();
351 EXPECT_CALL(*remote_input_injector_
, StartPtr(_
));
352 return remote_input_injector_
;
355 webrtc::ScreenCapturer
* IpcDesktopEnvironmentTest::CreateVideoCapturer() {
356 return new FakeScreenCapturer();
359 webrtc::MouseCursorMonitor
*
360 IpcDesktopEnvironmentTest::CreateMouseCursorMonitor() {
361 return new FakeMouseCursorMonitor();
364 void IpcDesktopEnvironmentTest::DeleteDesktopEnvironment() {
365 input_injector_
.reset();
366 screen_controls_
.reset();
367 video_capturer_
.reset();
369 // Trigger DisconnectTerminal().
370 desktop_environment_
.reset();
373 void IpcDesktopEnvironmentTest::ReflectClipboardEvent(
374 const protocol::ClipboardEvent
& event
) {
375 clipboard_stub_
->InjectClipboardEvent(event
);
378 void IpcDesktopEnvironmentTest::CreateDesktopProcess() {
379 EXPECT_TRUE(task_runner_
.get());
380 EXPECT_TRUE(io_task_runner_
.get());
382 // Create the daemon end of the daemon-to-desktop channel.
383 desktop_channel_name_
= IPC::Channel::GenerateUniqueRandomChannelID();
385 IPC::ChannelProxy::Create(IPC::ChannelHandle(desktop_channel_name_
),
386 IPC::Channel::MODE_SERVER
,
388 io_task_runner_
.get());
390 // Create and start the desktop process.
391 desktop_process_
.reset(new DesktopProcess(task_runner_
,
393 desktop_channel_name_
));
395 scoped_ptr
<MockDesktopEnvironmentFactory
> desktop_environment_factory(
396 new MockDesktopEnvironmentFactory());
397 EXPECT_CALL(*desktop_environment_factory
, CreatePtr())
399 .WillRepeatedly(Invoke(
400 this, &IpcDesktopEnvironmentTest::CreateDesktopEnvironment
));
401 EXPECT_CALL(*desktop_environment_factory
, SupportsAudioCapture())
403 .WillRepeatedly(Return(false));
405 EXPECT_TRUE(desktop_process_
->Start(
406 desktop_environment_factory
.PassAs
<DesktopEnvironmentFactory
>()));
409 void IpcDesktopEnvironmentTest::DestoyDesktopProcess() {
410 desktop_channel_
.reset();
411 if (desktop_process_
) {
412 desktop_process_
->OnChannelError();
413 desktop_process_
.reset();
415 remote_input_injector_
= NULL
;
418 void IpcDesktopEnvironmentTest::OnDisconnectCallback() {
419 DeleteDesktopEnvironment();
422 void IpcDesktopEnvironmentTest::OnDesktopAttached(
423 IPC::PlatformFileForTransit desktop_pipe
) {
425 // Instruct DesktopSessionProxy to connect to the network-to-desktop pipe.
426 desktop_environment_factory_
->OnDesktopSessionAgentAttached(
427 terminal_id_
, base::GetCurrentProcessHandle(), desktop_pipe
);
430 // Runs until the desktop is attached and exits immediately after that.
431 TEST_F(IpcDesktopEnvironmentTest
, Basic
) {
432 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
433 new protocol::MockClipboardStub());
434 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
437 // Start the input injector and screen capturer.
438 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
440 // Run the message loop until the desktop is attached.
441 setup_run_loop_
->Run();
444 DeleteDesktopEnvironment();
447 io_task_runner_
= NULL
;
448 main_run_loop_
.Run();
451 // Tests that the video capturer receives a frame over IPC.
452 TEST_F(IpcDesktopEnvironmentTest
, CaptureFrame
) {
453 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
454 new protocol::MockClipboardStub());
455 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
458 // Start the input injector and screen capturer.
459 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
460 video_capturer_
->Start(&screen_capturer_callback_
);
462 // Run the message loop until the desktop is attached.
463 setup_run_loop_
->Run();
465 // Stop the test when the first frame is captured.
466 EXPECT_CALL(screen_capturer_callback_
, OnCaptureCompleted(_
))
470 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
)));
472 // Capture a single frame.
473 video_capturer_
->Capture(webrtc::DesktopRegion());
476 io_task_runner_
= NULL
;
477 main_run_loop_
.Run();
480 // Tests that attaching to a new desktop works.
481 TEST_F(IpcDesktopEnvironmentTest
, Reattach
) {
482 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
483 new protocol::MockClipboardStub());
484 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
487 // Start the input injector and screen capturer.
488 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
489 video_capturer_
->Start(&screen_capturer_callback_
);
491 // Run the message loop until the desktop is attached.
492 setup_run_loop_
->Run();
494 // Create and start a new desktop process object.
495 setup_run_loop_
.reset(new base::RunLoop());
496 DestoyDesktopProcess();
497 CreateDesktopProcess();
498 setup_run_loop_
->Run();
501 DeleteDesktopEnvironment();
504 io_task_runner_
= NULL
;
505 main_run_loop_
.Run();
508 // Tests injection of clipboard events.
509 TEST_F(IpcDesktopEnvironmentTest
, InjectClipboardEvent
) {
510 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
511 new protocol::MockClipboardStub());
512 clipboard_stub_
= clipboard_stub
.get();
514 // Stop the test when a clipboard event is received from the desktop process.
515 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
517 .WillOnce(InvokeWithoutArgs(
518 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
520 // Start the input injector and screen capturer.
521 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
522 video_capturer_
->Start(&screen_capturer_callback_
);
524 // Run the message loop until the desktop is attached.
525 setup_run_loop_
->Run();
527 // Expect a single clipboard event.
528 EXPECT_CALL(*remote_input_injector_
, InjectClipboardEvent(_
))
530 .WillOnce(Invoke(this,
531 &IpcDesktopEnvironmentTest::ReflectClipboardEvent
));
533 // Send a clipboard event.
534 protocol::ClipboardEvent event
;
535 event
.set_mime_type(kMimeTypeTextUtf8
);
537 input_injector_
->InjectClipboardEvent(event
);
540 io_task_runner_
= NULL
;
541 main_run_loop_
.Run();
544 // Tests injection of key events.
545 TEST_F(IpcDesktopEnvironmentTest
, InjectKeyEvent
) {
546 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
547 new protocol::MockClipboardStub());
548 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
551 // Start the input injector and screen capturer.
552 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
553 video_capturer_
->Start(&screen_capturer_callback_
);
555 // Run the message loop until the desktop is attached.
556 setup_run_loop_
->Run();
558 // Expect a single key event.
559 EXPECT_CALL(*remote_input_injector_
, InjectKeyEvent(_
))
561 .WillRepeatedly(InvokeWithoutArgs(
562 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
565 protocol::KeyEvent event
;
566 event
.set_usb_keycode(0x070004);
567 event
.set_pressed(true);
568 input_injector_
->InjectKeyEvent(event
);
571 io_task_runner_
= NULL
;
572 main_run_loop_
.Run();
575 // Tests injection of text events.
576 TEST_F(IpcDesktopEnvironmentTest
, InjectTextEvent
) {
577 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
578 new protocol::MockClipboardStub());
579 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
582 // Start the input injector and screen capturer.
583 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
584 video_capturer_
->Start(&screen_capturer_callback_
);
586 // Run the message loop until the desktop is attached.
587 setup_run_loop_
->Run();
589 // Expect a single text event.
590 EXPECT_CALL(*remote_input_injector_
, InjectTextEvent(_
))
592 .WillRepeatedly(InvokeWithoutArgs(
593 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
595 // Send a text event.
596 protocol::TextEvent event
;
597 event
.set_text("hello");
598 input_injector_
->InjectTextEvent(event
);
601 io_task_runner_
= NULL
;
602 main_run_loop_
.Run();
605 // Tests injection of mouse events.
606 TEST_F(IpcDesktopEnvironmentTest
, InjectMouseEvent
) {
607 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
608 new protocol::MockClipboardStub());
609 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
612 // Start the input injector and screen capturer.
613 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
614 video_capturer_
->Start(&screen_capturer_callback_
);
616 // Run the message loop until the desktop is attached.
617 setup_run_loop_
->Run();
619 // Expect a single mouse event.
620 EXPECT_CALL(*remote_input_injector_
, InjectMouseEvent(_
))
622 .WillOnce(InvokeWithoutArgs(
623 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
625 // Send a mouse event.
626 protocol::MouseEvent event
;
629 input_injector_
->InjectMouseEvent(event
);
632 io_task_runner_
= NULL
;
633 main_run_loop_
.Run();
636 // Tests that setting the desktop resolution works.
637 TEST_F(IpcDesktopEnvironmentTest
, SetScreenResolution
) {
638 scoped_ptr
<protocol::MockClipboardStub
> clipboard_stub(
639 new protocol::MockClipboardStub());
640 EXPECT_CALL(*clipboard_stub
, InjectClipboardEvent(_
))
643 // Start the input injector and screen capturer.
644 input_injector_
->Start(clipboard_stub
.PassAs
<protocol::ClipboardStub
>());
645 video_capturer_
->Start(&screen_capturer_callback_
);
647 // Run the message loop until the desktop is attached.
648 setup_run_loop_
->Run();
650 EXPECT_CALL(daemon_channel_
, SetScreenResolution(_
, _
))
652 .WillOnce(InvokeWithoutArgs(
653 this, &IpcDesktopEnvironmentTest::DeleteDesktopEnvironment
));
655 // Change the desktop resolution.
656 screen_controls_
->SetScreenResolution(ScreenResolution(
657 webrtc::DesktopSize(100, 100),
658 webrtc::DesktopVector(96, 96)));
661 io_task_runner_
= NULL
;
662 main_run_loop_
.Run();
665 } // namespace remoting