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

Unified Diff: ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc

Issue 177113009: Support non-SFI mode in NaCl manifest file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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/pnacl_coordinator.cc
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
index 64dfdda520a0b69885aab44c6d90b0b767d5e12e..f0ea0750e33b85befd4bbade7086ef102e2ce2f8 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc
@@ -42,10 +42,12 @@ class PnaclManifest : public Manifest {
virtual bool GetProgramURL(nacl::string* full_url,
PnaclOptions* pnacl_options,
+ bool* uses_nonsfi_mode,
ErrorInfo* error_info) const {
// Does not contain program urls.
UNREFERENCED_PARAMETER(full_url);
UNREFERENCED_PARAMETER(pnacl_options);
+ UNREFERENCED_PARAMETER(uses_nonsfi_mode);
UNREFERENCED_PARAMETER(error_info);
PLUGIN_PRINTF(("PnaclManifest does not contain a program\n"));
error_info->SetReport(PP_NACL_ERROR_MANIFEST_GET_NEXE_URL,

Powered by Google App Engine
This is Rietveld 408576698