| 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 11 matching lines...) Expand all Loading... |
| 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/key_event_mapper.h" | 26 #include "remoting/client/key_event_mapper.h" |
| 27 #include "remoting/client/plugin/pepper_cursor_setter.h" | 27 #include "remoting/client/plugin/pepper_cursor_setter.h" |
| 28 #include "remoting/client/plugin/pepper_input_handler.h" | 28 #include "remoting/client/plugin/pepper_input_handler.h" |
| 29 #include "remoting/client/plugin/pepper_video_renderer.h" | 29 #include "remoting/client/plugin/pepper_video_renderer.h" |
| 30 #include "remoting/client/touch_input_scaler.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_stub.h" | 33 #include "remoting/protocol/client_stub.h" |
| 33 #include "remoting/protocol/clipboard_stub.h" | 34 #include "remoting/protocol/clipboard_stub.h" |
| 34 #include "remoting/protocol/connection_to_host.h" | 35 #include "remoting/protocol/connection_to_host.h" |
| 35 #include "remoting/protocol/cursor_shape_stub.h" | 36 #include "remoting/protocol/cursor_shape_stub.h" |
| 36 #include "remoting/protocol/input_event_tracker.h" | 37 #include "remoting/protocol/input_event_tracker.h" |
| 37 #include "remoting/protocol/mouse_input_filter.h" | 38 #include "remoting/protocol/mouse_input_filter.h" |
| 38 #include "remoting/protocol/negotiating_client_authenticator.h" | |
| 39 #include "remoting/protocol/performance_tracker.h" | 39 #include "remoting/protocol/performance_tracker.h" |
| 40 #include "remoting/protocol/third_party_client_authenticator.h" | |
| 41 | 40 |
| 42 namespace base { | 41 namespace base { |
| 43 class DictionaryValue; | 42 class DictionaryValue; |
| 44 } // namespace base | 43 } // namespace base |
| 45 | 44 |
| 46 namespace pp { | 45 namespace pp { |
| 47 class InputEvent; | 46 class InputEvent; |
| 48 class Module; | 47 class Module; |
| 49 class VarDictionary; | 48 class VarDictionary; |
| 50 } // namespace pp | 49 } // namespace pp |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 291 |
| 293 // 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. |
| 294 base::WeakPtrFactory<ChromotingInstance> weak_factory_; | 293 base::WeakPtrFactory<ChromotingInstance> weak_factory_; |
| 295 | 294 |
| 296 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); | 295 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance); |
| 297 }; | 296 }; |
| 298 | 297 |
| 299 } // namespace remoting | 298 } // namespace remoting |
| 300 | 299 |
| 301 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ | 300 #endif // REMOTING_CLIENT_PLUGIN_CHROMOTING_INSTANCE_H_ |
| OLD | NEW |