diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-09 00:59:31 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-09 00:59:31 +0000 |
commit | 963a91b1fda682b844b9ece88d2070862f51893f (patch) | |
tree | 1a12f5e9b33fb4147e130b6ba8203e89b3d8df58 /mojo/common | |
parent | a958382be2dbbdd153b01473c4f2498cb9beac28 (diff) | |
download | chromium_src-963a91b1fda682b844b9ece88d2070862f51893f.zip chromium_src-963a91b1fda682b844b9ece88d2070862f51893f.tar.gz chromium_src-963a91b1fda682b844b9ece88d2070862f51893f.tar.bz2 |
Get rid of multiprocess_test's debug_on_start arguments.
(It was only ever given a "true" value once, and even that seemed dubious.)
R=phajdan.jr@chromium.org
TBR=darin@chromium.org, jeremy@chromium.org
Review URL: https://codereview.chromium.org/191483002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/common')
-rw-r--r-- | mojo/common/test/multiprocess_test_helper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/common/test/multiprocess_test_helper.cc b/mojo/common/test/multiprocess_test_helper.cc index c3ae63d..90f7250 100644 --- a/mojo/common/test/multiprocess_test_helper.cc +++ b/mojo/common/test/multiprocess_test_helper.cc @@ -48,8 +48,8 @@ void MultiprocessTestHelper::StartChild(const std::string& test_child_name) { #error "Not supported yet." #endif - test_child_handle_ = base::SpawnMultiProcessTestChild( - test_child_main, command_line, options, false); + test_child_handle_ = + base::SpawnMultiProcessTestChild(test_child_main, command_line, options); platform_channel_pair_->ChildProcessLaunched(); CHECK_NE(test_child_handle_, base::kNullProcessHandle); |