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

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
« no previous file with comments | « chrome/test/nacl/nacl_browsertest_util.h ('k') | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/test/nacl/nacl_browsertest_util.h ('k') | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698