Chromium Code Reviews| Index: ppapi/native_client/src/trusted/plugin/service_runtime.h |
| diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.h b/ppapi/native_client/src/trusted/plugin/service_runtime.h |
| index 45e8ad045fe768f5d6b6001fc079989f35e33863..a327f3fbebb0d28a5da89a9845c31c49080135a6 100644 |
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.h |
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h |
| @@ -178,10 +178,9 @@ class ServiceRuntime { |
| void SignalNexeStarted(bool ok); |
| // Establish an SrpcClient to the sel_ldr instance and load the nexe. |
|
Mark Seaborn
2014/06/30 20:01:04
"load" -> "start"
teravest
2014/06/30 22:04:57
Done.
|
| - // The nexe to be started is passed through |file_info|. |
| // This function must be called on the main thread. |
| // This function must only be called once. |
| - void LoadNexeAndStart(PP_NaClFileInfo file_info); |
| + void LoadNexeAndStart(); |
| // Starts the application channel to the nexe. |
| SrpcClient* SetupAppChannel(); |
| @@ -203,7 +202,7 @@ class ServiceRuntime { |
| private: |
| NACL_DISALLOW_COPY_AND_ASSIGN(ServiceRuntime); |
| - bool LoadNexeAndStartInternal(const PP_NaClFileInfo& file_info); |
| + bool LoadNexeAndStartInternal(); |
| bool SetupCommandChannel(); |
| bool InitReverseService(); |