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); |