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 |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "ppapi/c/pp_instance.h" | 17 #include "ppapi/c/pp_instance.h" |
18 #include "ppapi/c/pp_rect.h" | 18 #include "ppapi/c/pp_rect.h" |
19 #include "ppapi/c/pp_resource.h" | 19 #include "ppapi/c/pp_resource.h" |
20 #include "ppapi/cpp/instance.h" | 20 #include "ppapi/cpp/instance.h" |
21 #include "ppapi/cpp/text_input_controller.h" | 21 #include "ppapi/cpp/text_input_controller.h" |
22 #include "ppapi/cpp/var.h" | 22 #include "ppapi/cpp/var.h" |
23 #include "remoting/client/client_context.h" | 23 #include "remoting/client/client_context.h" |
24 #include "remoting/client/client_user_interface.h" | 24 #include "remoting/client/client_user_interface.h" |
25 #include "remoting/client/empty_cursor_filter.h" | 25 #include "remoting/client/empty_cursor_filter.h" |
| 26 #include "remoting/client/input/touch_input_scaler.h" |
26 #include "remoting/client/key_event_mapper.h" | 27 #include "remoting/client/key_event_mapper.h" |
27 #include "remoting/client/plugin/pepper_cursor_setter.h" | 28 #include "remoting/client/plugin/pepper_cursor_setter.h" |
28 #include "remoting/client/plugin/pepper_input_handler.h" | 29 #include "remoting/client/plugin/pepper_input_handler.h" |
29 #include "remoting/client/plugin/pepper_video_renderer.h" | 30 #include "remoting/client/plugin/pepper_video_renderer.h" |
30 #include "remoting/client/touch_input_scaler.h" | |
31 #include "remoting/proto/event.pb.h" | 31 #include "remoting/proto/event.pb.h" |
32 #include "remoting/protocol/client_authentication_config.h" | 32 #include "remoting/protocol/client_authentication_config.h" |
33 #include "remoting/protocol/client_stub.h" | 33 #include "remoting/protocol/client_stub.h" |
34 #include "remoting/protocol/clipboard_stub.h" | 34 #include "remoting/protocol/clipboard_stub.h" |
35 #include "remoting/protocol/connection_to_host.h" | 35 #include "remoting/protocol/connection_to_host.h" |
36 #include "remoting/protocol/cursor_shape_stub.h" | 36 #include "remoting/protocol/cursor_shape_stub.h" |
37 #include "remoting/protocol/input_event_tracker.h" | 37 #include "remoting/protocol/input_event_tracker.h" |
38 #include "remoting/protocol/mouse_input_filter.h" | 38 #include "remoting/protocol/mouse_input_filter.h" |
39 #include "remoting/protocol/performance_tracker.h" | 39 #include "remoting/protocol/performance_tracker.h" |
40 | 40 |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 291 |
292 // Weak reference to this instance, used for global logging and task posting. | 292 // Weak reference to this instance, used for global logging and task posting. |
293 base::WeakPtrFactory<ChromotingInstance> weak_factory_; | 293 base::WeakPtrFactory<ChromotingInstance> weak_factory_; |
294 | 294 |
295 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 295 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
296 }; | 296 }; |
297 | 297 |
298 } // namespace remoting | 298 } // namespace remoting |
299 | 299 |
300 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 300 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
OLD | NEW |