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

Unified Diff: chrome/test/ppapi/ppapi_test.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 | « chrome/test/ppapi/ppapi_browsertest.cc ('k') | components/nacl/loader/nacl_helper_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ppapi/ppapi_test.cc
diff --git a/chrome/test/ppapi/ppapi_test.cc b/chrome/test/ppapi/ppapi_test.cc
index 7c980660a029e6934a11b7b022b85ae305f70813..ff60b590d733df740291faf989c8aefeef6fd68a 100644
--- a/chrome/test/ppapi/ppapi_test.cc
+++ b/chrome/test/ppapi/ppapi_test.cc
@@ -444,6 +444,9 @@ void PPAPINaClPNaClTransitionalNonSfiTest::SetUpCommandLine(
PPAPINaClPNaClNonSfiTest::SetUpCommandLine(command_line);
#if !defined(DISABLE_NACL)
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);
#endif
}
@@ -458,6 +461,9 @@ void PPAPIPrivateNaClPNaClTransitionalNonSfiTest::SetUpCommandLine(
PPAPIPrivateNaClPNaClNonSfiTest::SetUpCommandLine(command_line);
#if !defined(DISABLE_NACL)
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);
#endif
}
« no previous file with comments | « chrome/test/ppapi/ppapi_browsertest.cc ('k') | components/nacl/loader/nacl_helper_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698