| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 11 #include "base/process.h" | 11 #include "base/process.h" |
| 12 #include "base/process_util.h" | 12 #include "base/process_util.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "ipc/ipc_channel.h" | 14 #include "ipc/ipc_channel.h" |
| 15 #include "ipc/ipc_channel_proxy.h" | 15 #include "ipc/ipc_channel_proxy.h" |
| 16 #include "ipc/ipc_listener.h" | 16 #include "ipc/ipc_listener.h" |
| 17 #include "ipc/ipc_message.h" | 17 #include "ipc/ipc_message.h" |
| 18 #include "ipc/ipc_platform_file.h" | 18 #include "ipc/ipc_platform_file.h" |
| 19 #include "remoting/base/auto_thread.h" | 19 #include "remoting/base/auto_thread.h" |
| 20 #include "remoting/base/auto_thread_task_runner.h" | 20 #include "remoting/base/auto_thread_task_runner.h" |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 screen_controls_->SetScreenResolution(ScreenResolution( | 650 screen_controls_->SetScreenResolution(ScreenResolution( |
| 651 webrtc::DesktopSize(100, 100), | 651 webrtc::DesktopSize(100, 100), |
| 652 webrtc::DesktopVector(96, 96))); | 652 webrtc::DesktopVector(96, 96))); |
| 653 | 653 |
| 654 task_runner_ = NULL; | 654 task_runner_ = NULL; |
| 655 io_task_runner_ = NULL; | 655 io_task_runner_ = NULL; |
| 656 main_run_loop_.Run(); | 656 main_run_loop_.Run(); |
| 657 } | 657 } |
| 658 | 658 |
| 659 } // namespace remoting | 659 } // namespace remoting |
| OLD | NEW |