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

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: Created 5 years, 10 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
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..ee8c3f4fad01573ff21c96939db2bff584557bff 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.
dmichael (off chromium) 2015/03/05 18:17:01 bug reference, please here and below.
hidehiko 2015/03/06 09:14:47 Done.
+ 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.
+ command_line->AppendSwitch(switches::kDisableNamespaceSandbox);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698