summaryrefslogtreecommitdiffstats
path: root/chrome/browser/nacl_host/nacl_process_host.h
diff options
context:
space:
mode:
authorsehr@chromium.org <sehr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 20:29:26 +0000
committersehr@chromium.org <sehr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 20:29:26 +0000
commit286c095bb22f3dc2cd69d848e14c4c22ad8a56e2 (patch)
treedde61c7c2f2666a5237cd2dc2dcd81657f5f9d49 /chrome/browser/nacl_host/nacl_process_host.h
parentcc38f97853d14feb180e74f4c765a8130c6ab636 (diff)
downloadchromium_src-286c095bb22f3dc2cd69d848e14c4c22ad8a56e2.zip
chromium_src-286c095bb22f3dc2cd69d848e14c4c22ad8a56e2.tar.gz
chromium_src-286c095bb22f3dc2cd69d848e14c4c22ad8a56e2.tar.bz2
Disable untrusted exception handling for PNaCl
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3444 R=dmichael@chromium.org, jln@chromium.org, mseaborn@chromium.org, thakis@chromium.org, yzshen@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=205914 Review URL: https://codereview.chromium.org/15901015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206158 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/nacl_host/nacl_process_host.h')
-rw-r--r--chrome/browser/nacl_host/nacl_process_host.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/nacl_host/nacl_process_host.h b/chrome/browser/nacl_host/nacl_process_host.h
index 4ee83c3..3df8c27 100644
--- a/chrome/browser/nacl_host/nacl_process_host.h
+++ b/chrome/browser/nacl_host/nacl_process_host.h
@@ -53,6 +53,7 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
uint32 permission_bits,
bool uses_irt,
bool enable_dyncode_syscalls,
+ bool enable_exception_handling,
bool off_the_record,
const base::FilePath& profile_directory);
virtual ~NaClProcessHost();
@@ -191,12 +192,11 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
scoped_ptr<content::BrowserChildProcessHost> process_;
- bool enable_exception_handling_;
- bool enable_debug_stub_;
-
bool uses_irt_;
+ bool enable_debug_stub_;
bool enable_dyncode_syscalls_;
+ bool enable_exception_handling_;
bool off_the_record_;