| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ | 5 #ifndef REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ |
| 6 #define REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ | 6 #define REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/single_thread_task_runner.h" |
| 12 #include "remoting/host/basic_desktop_environment.h" | 13 #include "remoting/host/basic_desktop_environment.h" |
| 13 | 14 |
| 14 namespace remoting { | 15 namespace remoting { |
| 15 | 16 |
| 16 class HostWindow; | 17 class HostWindow; |
| 17 class LocalInputMonitor; | 18 class LocalInputMonitor; |
| 18 | 19 |
| 19 // Same as BasicDesktopEnvironment but also presents the Continue window to | 20 // Same as BasicDesktopEnvironment but also presents the Continue window to |
| 20 // the local user. | 21 // the local user. |
| 21 class It2MeDesktopEnvironment : public BasicDesktopEnvironment { | 22 class It2MeDesktopEnvironment : public BasicDesktopEnvironment { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 base::WeakPtr<ClientSessionControl> client_session_control, | 61 base::WeakPtr<ClientSessionControl> client_session_control, |
| 61 const DesktopEnvironmentOptions& options) override; | 62 const DesktopEnvironmentOptions& options) override; |
| 62 | 63 |
| 63 private: | 64 private: |
| 64 DISALLOW_COPY_AND_ASSIGN(It2MeDesktopEnvironmentFactory); | 65 DISALLOW_COPY_AND_ASSIGN(It2MeDesktopEnvironmentFactory); |
| 65 }; | 66 }; |
| 66 | 67 |
| 67 } // namespace remoting | 68 } // namespace remoting |
| 68 | 69 |
| 69 #endif // REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ | 70 #endif // REMOTING_HOST_IT2ME_DESKTOP_ENVIRONMENT_H_ |
| OLD | NEW |