| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ | 5 #ifndef REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ |
| 6 #define REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ | 6 #define REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/synchronization/cancellation_flag.h" | 14 #include "base/synchronization/cancellation_flag.h" |
| 15 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
| 16 #include "base/synchronization/waitable_event.h" | 16 #include "base/synchronization/waitable_event.h" |
| 17 #include "base/string16.h" | 17 #include "base/string16.h" |
| 18 #include "base/threading/platform_thread.h" | 18 #include "base/threading/platform_thread.h" |
| 19 #include "base/time.h" | 19 #include "base/time.h" |
| 20 #include "remoting/base/plugin_message_loop_proxy.h" | 20 #include "remoting/base/plugin_message_loop_proxy.h" |
| 21 #include "remoting/host/chromoting_host_context.h" | 21 #include "remoting/host/chromoting_host_context.h" |
| 22 #include "remoting/host/host_status_observer.h" | 22 #include "remoting/host/host_status_observer.h" |
| 23 #include "remoting/host/plugin/host_plugin_utils.h" | 23 #include "remoting/host/plugin/host_plugin_utils.h" |
| 24 #include "remoting/host/ui_strings.h" | 24 #include "remoting/host/ui_strings.h" |
| 25 #include "third_party/npapi/bindings/npapi.h" | 25 #include "third_party/npapi/bindings/npapi.h" |
| 26 #include "third_party/npapi/bindings/npfunctions.h" | 26 #include "third_party/npapi/bindings/npfunctions.h" |
| 27 #include "third_party/npapi/bindings/npruntime.h" | 27 #include "third_party/npapi/bindings/npruntime.h" |
| 28 | 28 |
| 29 namespace tracked_objects { | |
| 30 class Location; | |
| 31 } // namespace tracked_objects | |
| 32 | |
| 33 namespace remoting { | 29 namespace remoting { |
| 34 | 30 |
| 35 class ChromotingHost; | 31 class ChromotingHost; |
| 36 class DesktopEnvironment; | 32 class DesktopEnvironment; |
| 37 class MutableHostConfig; | 33 class MutableHostConfig; |
| 38 class RegisterSupportHostRequest; | 34 class RegisterSupportHostRequest; |
| 39 class SignalStrategy; | 35 class SignalStrategy; |
| 40 class SupportAccessVerifier; | 36 class SupportAccessVerifier; |
| 41 | 37 |
| 42 namespace policy_hack { | 38 namespace policy_hack { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 // it can be executed after at least one successful policy read. This | 209 // it can be executed after at least one successful policy read. This |
| 214 // variable contains the thunk if it is necessary. | 210 // variable contains the thunk if it is necessary. |
| 215 base::Closure pending_connect_; | 211 base::Closure pending_connect_; |
| 216 }; | 212 }; |
| 217 | 213 |
| 218 } // namespace remoting | 214 } // namespace remoting |
| 219 | 215 |
| 220 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::HostNPScriptObject); | 216 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::HostNPScriptObject); |
| 221 | 217 |
| 222 #endif // REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ | 218 #endif // REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ |
| OLD | NEW |