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

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: Add --disable-namespace-sandbox flag to browser tests temporarily. 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..7adb004e1aff2fffef4ee0b033cfc4ff40fbba0b 100644
--- a/chrome/test/ppapi/ppapi_test.cc
+++ b/chrome/test/ppapi/ppapi_test.cc
@@ -444,6 +444,8 @@ 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.
+ command_line->AppendSwitch(switches::kDisableNamespaceSandbox);
#endif
}
@@ -458,6 +460,8 @@ 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.
+ command_line->AppendSwitch(switches::kDisableNamespaceSandbox);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698