| 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 26 matching lines...) Expand all Loading... |
| 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 |
| 41 namespace base { | 41 namespace base { |
| 42 class DictionaryValue; | 42 class DictionaryValue; |
| 43 } // namespace base | 43 } // namespace base |
| 44 | 44 |
| 45 namespace pp { | 45 namespace pp { |
| 46 class InputEvent; | 46 class InputEvent; |
| 47 class Module; | |
| 48 class VarDictionary; | 47 class VarDictionary; |
| 49 } // namespace pp | 48 } // namespace pp |
| 50 | 49 |
| 51 namespace jingle_glue { | 50 namespace jingle_glue { |
| 52 class JingleThreadWrapper; | 51 class JingleThreadWrapper; |
| 53 } // namespace jingle_glue | 52 } // namespace jingle_glue |
| 54 | 53 |
| 55 namespace webrtc { | 54 namespace webrtc { |
| 56 class DesktopRegion; | 55 class DesktopRegion; |
| 57 class DesktopSize; | 56 class DesktopSize; |
| (...skipping 234 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 |