| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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.h" | 5 #include "remoting/host/desktop_environment.h" |
| 6 | 6 |
| 7 #include "remoting/host/capturer.h" | 7 #include "remoting/host/capturer.h" |
| 8 #include "remoting/host/curtain.h" | 8 #include "remoting/host/curtain.h" |
| 9 #include "remoting/protocol/input_stub.h" | 9 #include "remoting/host/event_executor.h" |
| 10 | |
| 11 using remoting::protocol::InputStub; | |
| 12 | 10 |
| 13 namespace remoting { | 11 namespace remoting { |
| 14 | 12 |
| 15 DesktopEnvironment::DesktopEnvironment(Capturer* capturer, | 13 DesktopEnvironment::DesktopEnvironment(Capturer* capturer, |
| 16 InputStub* input_stub, | 14 EventExecutor* event_executor, |
| 17 Curtain* curtain) | 15 Curtain* curtain) |
| 18 : capturer_(capturer), | 16 : capturer_(capturer), |
| 19 input_stub_(input_stub), | 17 event_executor_(event_executor), |
| 20 curtain_(curtain) { | 18 curtain_(curtain) { |
| 21 } | 19 } |
| 22 | 20 |
| 23 DesktopEnvironment::~DesktopEnvironment() { | 21 DesktopEnvironment::~DesktopEnvironment() { |
| 24 } | 22 } |
| 25 | 23 |
| 26 } // namespace remoting | 24 } // namespace remoting |
| OLD | NEW |