| Index: chrome/test/base/run_all_unittests.cc
|
| diff --git a/chrome/test/base/run_all_unittests.cc b/chrome/test/base/run_all_unittests.cc
|
| index 17d4e8c0f9b6c88dd1cb54164ef39ef604e26019..8536390cad209af2f1bceaa73a71d1acf458a844 100644
|
| --- a/chrome/test/base/run_all_unittests.cc
|
| +++ b/chrome/test/base/run_all_unittests.cc
|
| @@ -8,13 +8,15 @@
|
| #include "base/test/test_io_thread.h"
|
| #include "chrome/test/base/chrome_unit_test_suite.h"
|
| #include "content/public/test/unittest_test_suite.h"
|
| -#include "mojo/edk/test/scoped_ipc_support.h"
|
| +#include "mojo/edk/embedder/scoped_ipc_support.h"
|
|
|
| int main(int argc, char **argv) {
|
| content::UnitTestTestSuite test_suite(new ChromeUnitTestSuite(argc, argv));
|
|
|
| base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart);
|
| - mojo::edk::test::ScopedIPCSupport ipc_support(test_io_thread.task_runner());
|
| + mojo::edk::ScopedIPCSupport ipc_support(
|
| + test_io_thread.task_runner(),
|
| + mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST);
|
|
|
| return base::LaunchUnitTests(
|
| argc, argv, base::Bind(&content::UnitTestTestSuite::Run,
|
|
|