| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/thread_task_runner_handle.h" | 13 #include "base/thread_task_runner_handle.h" |
| 14 #include "ppapi/c/pp_instance.h" | 14 #include "ppapi/c/pp_instance.h" |
| 15 #include "ppapi/c/pp_rect.h" | 15 #include "ppapi/c/pp_rect.h" |
| 16 #include "ppapi/c/pp_resource.h" | 16 #include "ppapi/c/pp_resource.h" |
| 17 #include "ppapi/cpp/instance.h" | 17 #include "ppapi/cpp/instance.h" |
| 18 #include "ppapi/cpp/text_input_controller.h" | 18 #include "ppapi/cpp/text_input_controller.h" |
| 19 #include "ppapi/cpp/var.h" | 19 #include "ppapi/cpp/var.h" |
| 20 #include "remoting/client/client_context.h" | 20 #include "remoting/client/client_context.h" |
| 21 #include "remoting/client/client_user_interface.h" | 21 #include "remoting/client/client_user_interface.h" |
| 22 #include "remoting/client/empty_cursor_filter.h" |
| 22 #include "remoting/client/key_event_mapper.h" | 23 #include "remoting/client/key_event_mapper.h" |
| 23 #include "remoting/client/plugin/empty_cursor_filter.h" | |
| 24 #include "remoting/client/plugin/pepper_cursor_setter.h" | 24 #include "remoting/client/plugin/pepper_cursor_setter.h" |
| 25 #include "remoting/client/plugin/pepper_input_handler.h" | 25 #include "remoting/client/plugin/pepper_input_handler.h" |
| 26 #include "remoting/client/plugin/pepper_plugin_thread_delegate.h" | 26 #include "remoting/client/plugin/pepper_plugin_thread_delegate.h" |
| 27 #include "remoting/client/plugin/pepper_video_renderer.h" | 27 #include "remoting/client/plugin/pepper_video_renderer.h" |
| 28 #include "remoting/client/plugin/touch_input_scaler.h" | 28 #include "remoting/client/touch_input_scaler.h" |
| 29 #include "remoting/proto/event.pb.h" | 29 #include "remoting/proto/event.pb.h" |
| 30 #include "remoting/protocol/client_stub.h" | 30 #include "remoting/protocol/client_stub.h" |
| 31 #include "remoting/protocol/clipboard_stub.h" | 31 #include "remoting/protocol/clipboard_stub.h" |
| 32 #include "remoting/protocol/connection_to_host.h" | 32 #include "remoting/protocol/connection_to_host.h" |
| 33 #include "remoting/protocol/cursor_shape_stub.h" | 33 #include "remoting/protocol/cursor_shape_stub.h" |
| 34 #include "remoting/protocol/input_event_tracker.h" | 34 #include "remoting/protocol/input_event_tracker.h" |
| 35 #include "remoting/protocol/mouse_input_filter.h" | 35 #include "remoting/protocol/mouse_input_filter.h" |
| 36 #include "remoting/protocol/negotiating_client_authenticator.h" | 36 #include "remoting/protocol/negotiating_client_authenticator.h" |
| 37 #include "remoting/protocol/third_party_client_authenticator.h" | 37 #include "remoting/protocol/third_party_client_authenticator.h" |
| 38 | 38 |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 281 |
| 282 // Weak reference to this instance, used for global logging and task posting. | 282 // Weak reference to this instance, used for global logging and task posting. |
| 283 base::WeakPtrFactory<ChromotingInstance> weak_factory_; | 283 base::WeakPtrFactory<ChromotingInstance> weak_factory_; |
| 284 | 284 |
| 285 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 285 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
| 286 }; | 286 }; |
| 287 | 287 |
| 288 } // namespace remoting | 288 } // namespace remoting |
| 289 | 289 |
| 290 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 290 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| OLD | NEW |