Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1181)

Unified Diff: ppapi/native_client/src/trusted/plugin/service_runtime.h

Issue 332463003: Pepper: Remove LOAD_MODULE SRPC call in SFI mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for bbudge Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
- // 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();

Powered by Google App Engine
This is Rietveld 408576698