diff options
-rw-r--r-- | DEPS | 2 | ||||
-rw-r--r-- | chrome/browser/sandbox_policy.cc | 4 | ||||
-rw-r--r-- | chrome/test/nacl/nacl_test.cc | 1 |
3 files changed, 2 insertions, 5 deletions
@@ -43,7 +43,7 @@ deps = { "http://v8.googlecode.com/svn/trunk@3093", "src/native_client": - "http://nativeclient.googlecode.com/svn/trunk/src/native_client@893", + "http://nativeclient.googlecode.com/svn/trunk/src/native_client@894", "src/third_party/skia": "http://skia.googlecode.com/svn/trunk@404", diff --git a/chrome/browser/sandbox_policy.cc b/chrome/browser/sandbox_policy.cc index 5c21a67..3c825b0 100644 --- a/chrome/browser/sandbox_policy.cc +++ b/chrome/browser/sandbox_policy.cc @@ -358,10 +358,8 @@ base::ProcessHandle StartProcessWithAccess(CommandLine* cmd_line, (type != ChildProcessInfo::PLUGIN_PROCESS || browser_command_line.HasSwitch(switches::kSafePlugins)); #if !defined (GOOGLE_CHROME_BUILD) - if (browser_command_line.HasSwitch(switches::kInProcessPlugins) || - browser_command_line.HasSwitch(switches::kInternalNaCl)) { + if (browser_command_line.HasSwitch(switches::kInProcessPlugins)) { // In process plugins won't work if the sandbox is enabled. - // The internal NaCl plugin doesn't work in the sandbox for now. in_sandbox = false; } #endif diff --git a/chrome/test/nacl/nacl_test.cc b/chrome/test/nacl/nacl_test.cc index cf0e742..ced0e51 100644 --- a/chrome/test/nacl/nacl_test.cc +++ b/chrome/test/nacl/nacl_test.cc @@ -25,7 +25,6 @@ static const FilePath::CharType kSrpcHwNexeFileName[] = NaClTest::NaClTest() : UITest() { launch_arguments_.AppendSwitch(switches::kInternalNaCl); - launch_arguments_.AppendSwitch(switches::kNoSandbox); } NaClTest::~NaClTest() {} |