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) { |