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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | |
11 #include "remoting/host/desktop_environment.h" | 12 #include "remoting/host/desktop_environment.h" |
12 #include "remoting/host/ui_strings.h" | 13 #include "remoting/host/ui_strings.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 // Used to create audio/video capturers and event executor that work with | 20 // Used to create audio/video capturers and event executor that work with |
20 // the local console. | 21 // the local console. |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
112 // be called. | 113 // be called. |
113 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_; | 114 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_; |
114 | 115 |
115 // Used to run input-related tasks. | 116 // Used to run input-related tasks. |
116 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_; | 117 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_; |
117 | 118 |
118 // Used to run UI code. | 119 // Used to run UI code. |
119 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; | 120 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
120 | 121 |
121 // Contains a copy of the localized UI strings. | 122 // Contains a copy of the localized UI strings. |
122 const UiStrings ui_strings_; | 123 const UiStrings ui_strings_; |
Sergey Ulanov
2013/04/04 21:04:26
Not directly related to this CL, but maybe worth c
alexeypa (please no reviews)
2013/04/06 18:07:56
Done.
| |
123 | 124 |
124 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); | 125 DISALLOW_COPY_AND_ASSIGN(BasicDesktopEnvironmentFactory); |
125 }; | 126 }; |
126 | 127 |
127 } // namespace remoting | 128 } // namespace remoting |
128 | 129 |
129 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ | 130 #endif // REMOTING_HOST_BASIC_DESKTOP_ENVIRONMENT_H_ |
OLD | NEW |