seccomp: disable seccomp for RendererMainTest

This test *could* work, but it requires refactoring as outlined
in the bug.

BUG=59376
TEST=test works with seccomp enabled at compile-time

Review URL: http://codereview.chromium.org/3797010

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62775 0039d316-1c4b-4281-b951-d872f2087c98


CrOS-Libchrome-Original-Commit: 54a323ea46e0756d9270fa8e003f31aff7f8336e
diff --git a/base/test/multiprocess_test.h b/base/test/multiprocess_test.h
index 5126abe..af7a180 100644
--- a/base/test/multiprocess_test.h
+++ b/base/test/multiprocess_test.h
@@ -63,7 +63,9 @@
                            bool debug_on_start);
 #endif
 
-  CommandLine MakeCmdLine(const std::string& procname, bool debug_on_start);
+  // Set up the command line used to spawn the child process.
+  virtual CommandLine MakeCmdLine(const std::string& procname,
+                                  bool debug_on_start);
 
  private:
 #if defined(OS_WIN)
@@ -78,7 +80,7 @@
                                bool debug_on_start);
 #endif
 
- DISALLOW_COPY_AND_ASSIGN(MultiProcessTest);
+  DISALLOW_COPY_AND_ASSIGN(MultiProcessTest);
 };
 
 }  // namespace base