| 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_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 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 | 283 |
| 284 base::Lock access_code_lock_; | 284 base::Lock access_code_lock_; |
| 285 std::string access_code_; | 285 std::string access_code_; |
| 286 base::TimeDelta access_code_lifetime_; | 286 base::TimeDelta access_code_lifetime_; |
| 287 | 287 |
| 288 std::string client_username_; | 288 std::string client_username_; |
| 289 ScopedRefNPObject log_debug_info_func_; | 289 ScopedRefNPObject log_debug_info_func_; |
| 290 ScopedRefNPObject on_nat_traversal_policy_changed_func_; | 290 ScopedRefNPObject on_nat_traversal_policy_changed_func_; |
| 291 ScopedRefNPObject on_state_changed_func_; | 291 ScopedRefNPObject on_state_changed_func_; |
| 292 base::PlatformThreadId np_thread_id_; | 292 base::PlatformThreadId np_thread_id_; |
| 293 scoped_refptr<PluginMessageLoopProxy> plugin_message_loop_proxy_; | 293 scoped_refptr<PluginMessageLoopProxy> plugin_task_runner_; |
| 294 | 294 |
| 295 scoped_ptr<ChromotingHostContext> host_context_; | 295 scoped_ptr<ChromotingHostContext> host_context_; |
| 296 HostKeyPair host_key_pair_; | 296 HostKeyPair host_key_pair_; |
| 297 scoped_ptr<SignalStrategy> signal_strategy_; | 297 scoped_ptr<SignalStrategy> signal_strategy_; |
| 298 scoped_ptr<RegisterSupportHostRequest> register_request_; | 298 scoped_ptr<RegisterSupportHostRequest> register_request_; |
| 299 scoped_ptr<LogToServer> log_to_server_; | 299 scoped_ptr<LogToServer> log_to_server_; |
| 300 scoped_ptr<DesktopEnvironment> desktop_environment_; | 300 scoped_ptr<DesktopEnvironment> desktop_environment_; |
| 301 scoped_ptr<It2MeHostUserInterface> it2me_host_user_interface_; | 301 scoped_ptr<It2MeHostUserInterface> it2me_host_user_interface_; |
| 302 | 302 |
| 303 scoped_refptr<ChromotingHost> host_; | 303 scoped_refptr<ChromotingHost> host_; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 334 // SequencedWorkerPool. Problem is that SequencedWorkerPool relies | 334 // SequencedWorkerPool. Problem is that SequencedWorkerPool relies |
| 335 // on MessageLoopProxy::current(). | 335 // on MessageLoopProxy::current(). |
| 336 base::Thread worker_thread_; | 336 base::Thread worker_thread_; |
| 337 | 337 |
| 338 DISALLOW_COPY_AND_ASSIGN(HostNPScriptObject); | 338 DISALLOW_COPY_AND_ASSIGN(HostNPScriptObject); |
| 339 }; | 339 }; |
| 340 | 340 |
| 341 } // namespace remoting | 341 } // namespace remoting |
| 342 | 342 |
| 343 #endif // REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ | 343 #endif // REMOTING_HOST_PLUGIN_HOST_SCRIPT_OBJECT_H_ |
| OLD | NEW |