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..a06f37020ccd64182bc4affd067caf311cac0995 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 NaClBrowserTestTransitionalNonSfi::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 NaClBrowserTestPnaclTransitionalNonSfi::SetUpCommandLine( |
+ base::CommandLine* command_line) { |
+ NaClBrowserTestPnaclNonSfi::SetUpCommandLine(command_line); |
+ command_line->AppendSwitch(switches::kUseNaClHelperNonSfi); |
+} |
+ |
void NaClBrowserTestNewlibExtension::SetUpCommandLine( |
CommandLine* command_line) { |
NaClBrowserTestBase::SetUpCommandLine(command_line); |