| 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_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 5 #ifndef REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| 6 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 6 #define REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 // Contains the most-recently-reported desktop shape, if any. | 257 // Contains the most-recently-reported desktop shape, if any. |
| 258 scoped_ptr<webrtc::DesktopRegion> desktop_shape_; | 258 scoped_ptr<webrtc::DesktopRegion> desktop_shape_; |
| 259 | 259 |
| 260 scoped_ptr<DelegatingSignalStrategy> signal_strategy_; | 260 scoped_ptr<DelegatingSignalStrategy> signal_strategy_; |
| 261 | 261 |
| 262 scoped_ptr<ChromotingClient> client_; | 262 scoped_ptr<ChromotingClient> client_; |
| 263 | 263 |
| 264 // Input pipeline components, in reverse order of distance from input source. | 264 // Input pipeline components, in reverse order of distance from input source. |
| 265 protocol::MouseInputFilter mouse_input_filter_; | 265 protocol::MouseInputFilter mouse_input_filter_; |
| 266 protocol::InputEventTracker input_tracker_; | |
| 267 TouchInputScaler touch_input_scaler_; | 266 TouchInputScaler touch_input_scaler_; |
| 268 KeyEventMapper key_mapper_; | 267 KeyEventMapper key_mapper_; |
| 269 scoped_ptr<protocol::InputFilter> normalizing_input_filter_; | 268 scoped_ptr<protocol::InputFilter> normalizing_input_filter_; |
| 269 protocol::InputEventTracker input_tracker_; |
| 270 PepperInputHandler input_handler_; | 270 PepperInputHandler input_handler_; |
| 271 | 271 |
| 272 // Cursor shape handling components, in reverse order to that in which they | 272 // Cursor shape handling components, in reverse order to that in which they |
| 273 // process cursor shape events. Note that |mouse_locker_| appears in the | 273 // process cursor shape events. Note that |mouse_locker_| appears in the |
| 274 // cursor pipeline since it is triggered by receipt of an empty cursor. | 274 // cursor pipeline since it is triggered by receipt of an empty cursor. |
| 275 PepperCursorSetter cursor_setter_; | 275 PepperCursorSetter cursor_setter_; |
| 276 scoped_ptr<PepperMouseLocker> mouse_locker_; | 276 scoped_ptr<PepperMouseLocker> mouse_locker_; |
| 277 EmptyCursorFilter empty_cursor_filter_; | 277 EmptyCursorFilter empty_cursor_filter_; |
| 278 | 278 |
| 279 // Used to control text input settings, such as whether to show the IME. | 279 // Used to control text input settings, such as whether to show the IME. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 293 | 293 |
| 294 // Weak reference to this instance, used for global logging and task posting. | 294 // Weak reference to this instance, used for global logging and task posting. |
| 295 base::WeakPtrFactory<ChromotingInstance> weak_factory_; | 295 base::WeakPtrFactory<ChromotingInstance> weak_factory_; |
| 296 | 296 |
| 297 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 297 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
| 298 }; | 298 }; |
| 299 | 299 |
| 300 } // namespace remoting | 300 } // namespace remoting |
| 301 | 301 |
| 302 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 302 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| OLD | NEW |