Index: third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc |
diff --git a/third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc b/third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc |
index 04634ac8e891cda574834142fc4c3aff8d92b86a..7e7c5f4d9239bf45798f70a39becaf1915d9c1e1 100644 |
--- a/third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc |
+++ b/third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc |
@@ -136,7 +136,7 @@ class EmbedderTest : public testing::Test { |
} |
private: |
- void SetUp() override { test::InitWithSimplePlatformSupport(); } |
+ void SetUp() override { Init(); } |
void TearDown() override { EXPECT_TRUE(test::Shutdown()); } |
@@ -499,7 +499,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_TEST(MultiprocessMasterSlave) { |
EXPECT_TRUE(client_platform_handle.is_valid()); |
base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); |
- test::InitWithSimplePlatformSupport(); |
+ Init(); |
{ |
mojo::test::ScopedSlaveIPCSupport ipc_support( |
@@ -694,7 +694,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_TEST(MultiprocessChannelsClient) { |
EXPECT_TRUE(client_platform_handle.is_valid()); |
base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); |
- test::InitWithSimplePlatformSupport(); |
+ Init(); |
{ |
// TODO(vtl): This should eventually initialize a slave process instead, |