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..a1677742a44dc00846a98278f07e678e10e98c49 100644 |
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.h |
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.h |
@@ -177,11 +177,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(); |
@@ -203,7 +202,7 @@ class ServiceRuntime { |
private: |
NACL_DISALLOW_COPY_AND_ASSIGN(ServiceRuntime); |
- bool LoadNexeAndStartInternal(const PP_NaClFileInfo& file_info); |
+ bool StartNexeInternal(); |
bool SetupCommandChannel(); |
bool InitReverseService(); |