| 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 #ifndef REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 5 #ifndef REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| 6 #define REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 6 #define REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "remoting/host/desktop_environment.h" | 15 #include "remoting/host/desktop_environment.h" |
| 16 | 16 |
| 17 namespace base { |
| 18 class SingleThreadTaskRunner; |
| 19 } |
| 20 |
| 17 namespace webrtc { | 21 namespace webrtc { |
| 18 | 22 |
| 19 class DesktopCaptureOptions; | 23 class DesktopCaptureOptions; |
| 20 | 24 |
| 21 } // namespace webrtc | 25 } // namespace webrtc |
| 22 | 26 |
| 23 namespace remoting { | 27 namespace remoting { |
| 24 | 28 |
| 25 // Used to create audio/video capturers and event executor that work with | 29 // Used to create audio/video capturers and event executor that work with |
| 26 // the local console. | 30 // the local console. |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 145 |
| 142 // Used to run UI code. | 146 // Used to run UI code. |
| 143 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; | 147 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
| 144 | 148 |
| 145 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); | 149 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); |
| 146 }; | 150 }; |
| 147 | 151 |
| 148 } // namespace remoting | 152 } // namespace remoting |
| 149 | 153 |
| 150 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 154 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
| OLD | NEW |