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

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

Issue 724323002: Non-SFI mode: Enable browser_tests for nacl_helper_nonsfi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/nacl/nacl_browsertest_util.cc
diff --git a/chrome/test/nacl/nacl_browsertest_util.cc b/chrome/test/nacl/nacl_browsertest_util.cc
index df44a035c5059a81a0593350d01813fa8d99fd9b..83fcd7a470f74d9fc23e591240c890a6fa2ddb4a 100644
--- a/chrome/test/nacl/nacl_browsertest_util.cc
+++ b/chrome/test/nacl/nacl_browsertest_util.cc
@@ -293,6 +293,12 @@ void NaClBrowserTestNonSfiMode::SetUpCommandLine(
command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
}
+void NaClBrowserTestNaClHelperNonSfi::SetUpCommandLine(
+ base::CommandLine* command_line) {
+ NaClBrowserTestNonSfiMode::SetUpCommandLine(command_line);
+ command_line->AppendSwitch(switches::kUseNaClHelperNonSfi);
+}
+
base::FilePath::StringType NaClBrowserTestStatic::Variant() {
return FILE_PATH_LITERAL("static");
}
@@ -312,6 +318,12 @@ void NaClBrowserTestPnaclNonSfi::SetUpCommandLine(
command_line->AppendSwitch(switches::kEnableNaClNonSfiMode);
}
+void NaClBrowserTestPnaclNaClHelperNonSfi::SetUpCommandLine(
+ base::CommandLine* command_line) {
+ NaClBrowserTestPnaclNonSfi::SetUpCommandLine(command_line);
+ command_line->AppendSwitch(switches::kUseNaClHelperNonSfi);
+}
+
void NaClBrowserTestNewlibExtension::SetUpCommandLine(
CommandLine* command_line) {
NaClBrowserTestBase::SetUpCommandLine(command_line);

Powered by Google App Engine
This is Rietveld 408576698