| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client 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 // Instances of NaCl modules spun up within the plugin as a subprocess. | 5 // Instances of NaCl modules spun up within the plugin as a subprocess. |
| 6 // This may represent the "main" nacl module, or it may represent helpers | 6 // This may represent the "main" nacl module, or it may represent helpers |
| 7 // that perform various tasks within the plugin, for example, | 7 // that perform various tasks within the plugin, for example, |
| 8 // a NaCl module for a compiler could be loaded to translate LLVM bitcode | 8 // a NaCl module for a compiler could be loaded to translate LLVM bitcode |
| 9 // into native code. | 9 // into native code. |
| 10 | 10 |
| 11 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_SUBPROCESS_H_ | 11 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_SUBPROCESS_H_ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 // The service runtime representing the NaCl module instance. | 73 // The service runtime representing the NaCl module instance. |
| 74 nacl::scoped_ptr<ServiceRuntime> service_runtime_; | 74 nacl::scoped_ptr<ServiceRuntime> service_runtime_; |
| 75 | 75 |
| 76 // Ownership of srpc_client taken from the service runtime. | 76 // Ownership of srpc_client taken from the service runtime. |
| 77 nacl::scoped_ptr<SrpcClient> srpc_client_; | 77 nacl::scoped_ptr<SrpcClient> srpc_client_; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace plugin | 80 } // namespace plugin |
| 81 | 81 |
| 82 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_SUBPROCESS_H_ | 82 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_SUBPROCESS_H_ |
| OLD | NEW |