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

Unified Diff: components/nacl/common/nacl_types.h

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: components/nacl/common/nacl_types.h
diff --git a/components/nacl/common/nacl_types.h b/components/nacl/common/nacl_types.h
index 29235ec3b7870f9219b5bd5ea8cf0ae6404f9a59..d13a30e201179ec997f06e6b9d630916c05ae739 100644
--- a/components/nacl/common/nacl_types.h
+++ b/components/nacl/common/nacl_types.h
@@ -72,7 +72,8 @@ struct NaClLaunchParams {
NaClLaunchParams(const std::string& u, int r, uint32 p, bool uses_irt,
bool enable_dyncode_syscalls,
bool enable_exception_handling,
- bool enable_crash_throttling);
+ bool enable_crash_throttling,
+ bool enable_nonsfi);
NaClLaunchParams(const NaClLaunchParams& l);
~NaClLaunchParams();
@@ -83,6 +84,7 @@ struct NaClLaunchParams {
bool enable_dyncode_syscalls;
bool enable_exception_handling;
bool enable_crash_throttling;
+ bool enable_nonsfi;
};
struct NaClLaunchResult {

Powered by Google App Engine
This is Rietveld 408576698