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

Unified Diff: components/nacl/common/nacl_types.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: components/nacl/common/nacl_types.cc
diff --git a/components/nacl/common/nacl_types.cc b/components/nacl/common/nacl_types.cc
index acd49c0069de47876d0eb40a246ffc050bc5a772..fc3ea3c4fc44f34c046177aef85c1ae00707f967 100644
--- a/components/nacl/common/nacl_types.cc
+++ b/components/nacl/common/nacl_types.cc
@@ -35,14 +35,16 @@ NaClLaunchParams::NaClLaunchParams(const std::string& manifest_url,
bool uses_irt,
bool enable_dyncode_syscalls,
bool enable_exception_handling,
- bool enable_crash_throttling)
+ bool enable_crash_throttling,
+ bool enable_nonsfi)
: manifest_url(manifest_url),
render_view_id(render_view_id),
permission_bits(permission_bits),
uses_irt(uses_irt),
enable_dyncode_syscalls(enable_dyncode_syscalls),
enable_exception_handling(enable_exception_handling),
- enable_crash_throttling(enable_crash_throttling) {
+ enable_crash_throttling(enable_crash_throttling),
+ enable_nonsfi(enable_nonsfi) {
}
NaClLaunchParams::NaClLaunchParams(const NaClLaunchParams& l) {

Powered by Google App Engine
This is Rietveld 408576698