OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2008 The Native Client Authors. All rights reserved. | 2 * Copyright 2008 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 // A class containing information regarding a socket connection to a | 7 // A class containing information regarding a socket connection to a |
8 // service runtime instance. | 8 // service runtime instance. |
9 | 9 |
10 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SERVICE_RUNTIME_H_ | 10 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
11 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SERVICE_RUNTIME_H_ | 11 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
12 | 12 |
13 #include "native_client/src/include/nacl_macros.h" | 13 #include "native_client/src/include/nacl_macros.h" |
14 #include "native_client/src/include/nacl_string.h" | 14 #include "native_client/src/include/nacl_string.h" |
15 #include "native_client/src/shared/imc/nacl_imc.h" | 15 #include "native_client/src/shared/imc/nacl_imc.h" |
16 #include "native_client/src/trusted/plugin/srpc/utility.h" | 16 #include "native_client/src/trusted/plugin/utility.h" |
17 | 17 |
18 namespace nacl { | 18 namespace nacl { |
19 class DescWrapper; | 19 class DescWrapper; |
20 struct SelLdrLauncher; | 20 struct SelLdrLauncher; |
21 } // namespace | 21 } // namespace |
22 | 22 |
23 | 23 |
24 namespace plugin { | 24 namespace plugin { |
25 | 25 |
26 class BrowserInterface; | 26 class BrowserInterface; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 BrowserInterface* browser_interface_; | 66 BrowserInterface* browser_interface_; |
67 ScriptableHandle* default_socket_address_; | 67 ScriptableHandle* default_socket_address_; |
68 ScriptableHandle* default_socket_; | 68 ScriptableHandle* default_socket_; |
69 Plugin* plugin_; | 69 Plugin* plugin_; |
70 SrtSocket* runtime_channel_; | 70 SrtSocket* runtime_channel_; |
71 nacl::SelLdrLauncher* subprocess_; | 71 nacl::SelLdrLauncher* subprocess_; |
72 }; | 72 }; |
73 | 73 |
74 } // namespace plugin | 74 } // namespace plugin |
75 | 75 |
76 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_SERVICE_RUNTIME_H_ | 76 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SERVICE_RUNTIME_H_ |
OLD | NEW |