| Index: ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| diff --git a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| index 60046d16c529004cf6b88c8496f5839de9c0d4ab..8ee5556a7b905d196890a2792ddab5abcb89bb79 100644
|
| --- a/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| +++ b/ipc/mojo/ipc_mojo_bootstrap_unittest.cc
|
| @@ -26,7 +26,7 @@ class TestingDelegate : public IPC::MojoBootstrap::Delegate {
|
| public:
|
| TestingDelegate() : passed_(false) {}
|
|
|
| - void OnPipeAvailable(mojo::embedder::ScopedPlatformHandle handle,
|
| + void OnPipeAvailable(mojo::edk::ScopedPlatformHandle handle,
|
| int32_t peer_pid) override;
|
| void OnBootstrapError() override;
|
|
|
| @@ -36,9 +36,8 @@ class TestingDelegate : public IPC::MojoBootstrap::Delegate {
|
| bool passed_;
|
| };
|
|
|
| -void TestingDelegate::OnPipeAvailable(
|
| - mojo::embedder::ScopedPlatformHandle handle,
|
| - int32_t peer_pid) {
|
| +void TestingDelegate::OnPipeAvailable(mojo::edk::ScopedPlatformHandle handle,
|
| + int32_t peer_pid) {
|
| passed_ = true;
|
| base::MessageLoop::current()->QuitWhenIdle();
|
| }
|
|
|