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

Unified Diff: chrome/renderer/renderer_main_unittest.cc

Issue 5844001: seccomp: remove build-time flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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/common/chrome_switches.cc ('k') | chrome/test/nacl/nacl_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/renderer_main_unittest.cc
diff --git a/chrome/renderer/renderer_main_unittest.cc b/chrome/renderer/renderer_main_unittest.cc
index 310e56b758614da1cda5412794b59f2d91fe9711..464419bcd0d799f3c73dd6bed9ba59fed44022c1 100644
--- a/chrome/renderer/renderer_main_unittest.cc
+++ b/chrome/renderer/renderer_main_unittest.cc
@@ -73,12 +73,12 @@ CommandLine RendererMainTest::MakeCmdLine(const std::string& procname,
bool debug_on_start) {
CommandLine command_line =
MultiProcessTest::MakeCmdLine(procname, debug_on_start);
-#if defined(USE_SECCOMP_SANDBOX)
- // Turn off seccomp for this test. It's just a problem of refactoring,
+
+ // Force seccomp off for this test. It's just a problem of refactoring,
// not a bug.
// http://code.google.com/p/chromium/issues/detail?id=59376
command_line.AppendSwitch(switches::kDisableSeccompSandbox);
-#endif
+
return command_line;
}
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/test/nacl/nacl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698