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

Unified Diff: chrome/test/nacl/nacl_browsertest_util.cc

Issue 888903004: Non-SFI mode:Suid sandbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/nacl/nacl_browsertest_util.cc
diff --git a/chrome/test/nacl/nacl_browsertest_util.cc b/chrome/test/nacl/nacl_browsertest_util.cc
index 6248d8a776212a439f7c70c2f89d1eab7f43b32b..f1e0f805a5ff0c3fa597c3e8e60b2d0c154efec9 100644
--- a/chrome/test/nacl/nacl_browsertest_util.cc
+++ b/chrome/test/nacl/nacl_browsertest_util.cc
@@ -297,6 +297,9 @@ void NaClBrowserTestTransitionalNonSfi::SetUpCommandLine(
base::CommandLine* command_line) {
NaClBrowserTestNonSfiMode::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kUseNaClHelperNonSfi);
+ // TODO(hidehiko): Remove this flag, when namespace sandbox is supported
+ // by nacl_helper_nonsfi. (cf. crbug.com/464663)
+ command_line->AppendSwitch(switches::kDisableNamespaceSandbox);
}
base::FilePath::StringType NaClBrowserTestStatic::Variant() {
@@ -322,6 +325,9 @@ void NaClBrowserTestPnaclTransitionalNonSfi::SetUpCommandLine(
base::CommandLine* command_line) {
NaClBrowserTestPnaclNonSfi::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kUseNaClHelperNonSfi);
+ // TODO(hidehiko): Remove this flag, when namespace sandbox is supported
+ // by nacl_helper_nonsfi. (cf. crbug.com/464663)
+ command_line->AppendSwitch(switches::kDisableNamespaceSandbox);
}
void NaClBrowserTestNewlibExtension::SetUpCommandLine(
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698