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 e3facc687583f9b3dabf130bc1043039b7053b2e..1b24ff5922c4098cdca9fd47ff7c66c9c3aea441 100644 |
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.h |
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h |
@@ -178,11 +178,10 @@ class ServiceRuntime { |
// successfully or unsuccessfully). |
void SignalNexeStarted(bool ok); |
- // Establish an SrpcClient to the sel_ldr instance and load the nexe. |
- // The nexe to be started is passed through |file_info|. |
+ // Establish an SrpcClient to the sel_ldr instance and start the nexe. |
// This function must be called on the main thread. |
// This function must only be called once. |
- void LoadNexeAndStart(PP_NaClFileInfo file_info); |
+ void StartNexe(); |
// Starts the application channel to the nexe. |
SrpcClient* SetupAppChannel(); |
@@ -204,11 +203,10 @@ class ServiceRuntime { |
private: |
NACL_DISALLOW_COPY_AND_ASSIGN(ServiceRuntime); |
- bool LoadNexeAndStartInternal(const PP_NaClFileInfo& file_info); |
+ bool StartNexeInternal(); |
bool SetupCommandChannel(); |
bool InitReverseService(); |
- bool LoadModule(const PP_NaClFileInfo& file_info); |
bool StartModule(); |
void ReapLogs(); |