Chromium Code Reviews| 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 "remoting/host/desktop_environment_factory.h" | 5 #include "remoting/host/desktop_environment_factory.h" |
| 6 | 6 |
| 7 #include "remoting/host/audio_capturer.h" | 7 #include "remoting/host/audio_capturer.h" |
| 8 #include "remoting/host/chromoting_host_context.h" | 8 #include "remoting/host/chromoting_host_context.h" |
| 9 #include "remoting/host/desktop_environment.h" | 9 #include "remoting/host/desktop_environment.h" |
| 10 #include "remoting/host/event_executor.h" | 10 #include "remoting/host/event_executor.h" |
| 11 #include "remoting/host/video_frame_capturer.h" | 11 #include "remoting/host/video_frame_capturer.h" |
| 12 | 12 |
| 13 namespace remoting { | 13 namespace remoting { |
| 14 | 14 |
| 15 DesktopEnvironmentFactory::DesktopEnvironmentFactory() { | 15 DesktopEnvironmentFactory::DesktopEnvironmentFactory( |
| 16 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner, | |
| 17 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) | |
| 18 : input_task_runner_(input_task_runner), ui_task_runner_(ui_task_runner) { | |
|
alexeypa (please no reviews)
2012/10/01 18:31:34
nit: I believe it will look better if you put inpu
Wez
2012/10/02 05:19:44
Done.
| |
| 16 } | 19 } |
| 17 | 20 |
| 18 DesktopEnvironmentFactory::~DesktopEnvironmentFactory() { | 21 DesktopEnvironmentFactory::~DesktopEnvironmentFactory() { |
| 19 } | 22 } |
| 20 | 23 |
| 21 scoped_ptr<DesktopEnvironment> DesktopEnvironmentFactory::Create( | 24 scoped_ptr<DesktopEnvironment> DesktopEnvironmentFactory::Create() { |
| 22 ChromotingHostContext* context) { | |
| 23 scoped_ptr<AudioCapturer> audio_capturer = AudioCapturer::Create(); | 25 scoped_ptr<AudioCapturer> audio_capturer = AudioCapturer::Create(); |
| 24 scoped_ptr<EventExecutor> event_executor = EventExecutor::Create( | 26 scoped_ptr<EventExecutor> event_executor = EventExecutor::Create( |
| 25 context->desktop_task_runner(), | 27 input_task_runner_, ui_task_runner_); |
| 26 context->ui_task_runner()); | |
| 27 scoped_ptr<VideoFrameCapturer> video_capturer(VideoFrameCapturer::Create()); | 28 scoped_ptr<VideoFrameCapturer> video_capturer(VideoFrameCapturer::Create()); |
| 28 return scoped_ptr<DesktopEnvironment>(new DesktopEnvironment( | 29 return scoped_ptr<DesktopEnvironment>(new DesktopEnvironment( |
| 29 audio_capturer.Pass(), | 30 audio_capturer.Pass(), event_executor.Pass(), video_capturer.Pass())); |
| 30 event_executor.Pass(), | |
| 31 video_capturer.Pass())); | |
| 32 } | 31 } |
| 33 | 32 |
| 34 bool DesktopEnvironmentFactory::SupportsAudioCapture() const { | 33 bool DesktopEnvironmentFactory::SupportsAudioCapture() const { |
| 35 return AudioCapturer::IsSupported(); | 34 return AudioCapturer::IsSupported(); |
| 36 } | 35 } |
| 37 | 36 |
| 38 } // namespace remoting | 37 } // namespace remoting |
| OLD | NEW |