| 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 // This file implements the Windows service controlling Me2Me host processes | 5 // This file implements the Windows service controlling Me2Me host processes |
| 6 // running within user sessions. | 6 // running within user sessions. |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 if (channel_name.empty()) | 34 if (channel_name.empty()) |
| 35 return kUsageExitCode; | 35 return kUsageExitCode; |
| 36 | 36 |
| 37 base::MessageLoopForUI message_loop; | 37 base::MessageLoopForUI message_loop; |
| 38 base::RunLoop run_loop; | 38 base::RunLoop run_loop; |
| 39 scoped_refptr<AutoThreadTaskRunner> ui_task_runner = | 39 scoped_refptr<AutoThreadTaskRunner> ui_task_runner = |
| 40 new AutoThreadTaskRunner(message_loop.task_runner(), | 40 new AutoThreadTaskRunner(message_loop.task_runner(), |
| 41 run_loop.QuitClosure()); | 41 run_loop.QuitClosure()); |
| 42 | 42 |
| 43 // Launch the video capture thread. |
| 44 scoped_refptr<AutoThreadTaskRunner> video_capture_task_runner = |
| 45 AutoThread::Create("Video capture thread", ui_task_runner); |
| 46 |
| 43 // Launch the input thread. | 47 // Launch the input thread. |
| 44 scoped_refptr<AutoThreadTaskRunner> input_task_runner = | 48 scoped_refptr<AutoThreadTaskRunner> input_task_runner = |
| 45 AutoThread::CreateWithType( | 49 AutoThread::CreateWithType( |
| 46 "Input thread", ui_task_runner, base::MessageLoop::TYPE_IO); | 50 "Input thread", ui_task_runner, base::MessageLoop::TYPE_IO); |
| 47 | 51 |
| 48 DesktopProcess desktop_process(ui_task_runner, | 52 DesktopProcess desktop_process(ui_task_runner, |
| 49 input_task_runner, | 53 input_task_runner, |
| 50 channel_name); | 54 channel_name); |
| 51 | 55 |
| 52 // Create a platform-dependent environment factory. | 56 // Create a platform-dependent environment factory. |
| 53 scoped_ptr<DesktopEnvironmentFactory> desktop_environment_factory; | 57 scoped_ptr<DesktopEnvironmentFactory> desktop_environment_factory; |
| 54 #if defined(OS_WIN) | 58 #if defined(OS_WIN) |
| 55 desktop_environment_factory.reset( | 59 desktop_environment_factory.reset(new SessionDesktopEnvironmentFactory( |
| 56 new SessionDesktopEnvironmentFactory( | 60 ui_task_runner, video_capture_task_runner, input_task_runner, |
| 57 ui_task_runner, | 61 ui_task_runner, |
| 58 input_task_runner, | 62 base::Bind(&DesktopProcess::InjectSas, desktop_process.AsWeakPtr()))); |
| 59 ui_task_runner, | |
| 60 base::Bind(&DesktopProcess::InjectSas, | |
| 61 desktop_process.AsWeakPtr()))); | |
| 62 #else // !defined(OS_WIN) | 63 #else // !defined(OS_WIN) |
| 63 desktop_environment_factory.reset(new Me2MeDesktopEnvironmentFactory( | 64 desktop_environment_factory.reset(new Me2MeDesktopEnvironmentFactory( |
| 64 ui_task_runner, | 65 ui_task_runner, video_capture_task_runner, input_task_runner, |
| 65 input_task_runner, | |
| 66 ui_task_runner)); | 66 ui_task_runner)); |
| 67 #endif // !defined(OS_WIN) | 67 #endif // !defined(OS_WIN) |
| 68 | 68 |
| 69 if (!desktop_process.Start(std::move(desktop_environment_factory))) | 69 if (!desktop_process.Start(std::move(desktop_environment_factory))) |
| 70 return kInitializationFailed; | 70 return kInitializationFailed; |
| 71 | 71 |
| 72 // Run the UI message loop. | 72 // Run the UI message loop. |
| 73 ui_task_runner = nullptr; | 73 ui_task_runner = nullptr; |
| 74 run_loop.Run(); | 74 run_loop.Run(); |
| 75 | 75 |
| 76 return kSuccessExitCode; | 76 return kSuccessExitCode; |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace remoting | 79 } // namespace remoting |
| 80 | 80 |
| 81 #if !defined(OS_WIN) | 81 #if !defined(OS_WIN) |
| 82 int main(int argc, char** argv) { | 82 int main(int argc, char** argv) { |
| 83 return remoting::HostMain(argc, argv); | 83 return remoting::HostMain(argc, argv); |
| 84 } | 84 } |
| 85 #endif // !defined(OS_WIN) | 85 #endif // !defined(OS_WIN) |
| OLD | NEW |