| Index: services/native_support/process_test_base.cc
|
| diff --git a/services/native_support/process_test_base.cc b/services/native_support/process_test_base.cc
|
| index 08fd0a65ed71f5e839d2f4a9c86b6e221b7da194..31d8d63fe3f2f185491ec47f546a168ad558a0ed 100644
|
| --- a/services/native_support/process_test_base.cc
|
| +++ b/services/native_support/process_test_base.cc
|
| @@ -5,6 +5,7 @@
|
| #include "services/native_support/process_test_base.h"
|
|
|
| #include "mojo/public/cpp/application/application_impl.h"
|
| +#include "mojo/public/cpp/application/connect.h"
|
| #include "mojo/services/native_support/interfaces/process.mojom.h"
|
|
|
| using mojo::SynchronousInterfacePtr;
|
| @@ -17,12 +18,8 @@ ProcessTestBase::~ProcessTestBase() {}
|
|
|
| void ProcessTestBase::SetUp() {
|
| mojo::test::ApplicationTestBase::SetUp();
|
| - ProcessPtr process_async;
|
| - // TODO(vtl): Fix this.
|
| - application_impl()->ConnectToServiceDeprecated("mojo:native_support",
|
| - &process_async);
|
| - process_ = SynchronousInterfacePtr<Process>::Create(
|
| - process_async.PassInterfaceHandle());
|
| + mojo::ConnectToService(application_impl()->shell(), "mojo:native_support",
|
| + GetSynchronousProxy(&process_));
|
| }
|
|
|
| } // namespace native_support
|
|
|