| Index: ipc/ipc_test_base.h
|
| diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h
|
| index 11f64559884cb6dd8b2e017564eaa1b50ae5e3cf..5ed7dd58635a894eda47532e787f8ca73099e32d 100644
|
| --- a/ipc/ipc_test_base.h
|
| +++ b/ipc/ipc_test_base.h
|
| @@ -100,7 +100,7 @@ class IPCTestBase : public base::MultiProcessTest {
|
| IPC::Channel* channel() { return channel_.get(); }
|
| IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); }
|
|
|
| - const base::ProcessHandle& client_process() const { return client_process_; }
|
| + const base::Process& client_process() const { return client_process_; }
|
| scoped_refptr<base::TaskRunner> task_runner();
|
|
|
| virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory(
|
| @@ -117,7 +117,7 @@ class IPCTestBase : public base::MultiProcessTest {
|
| scoped_ptr<IPC::Channel> channel_;
|
| scoped_ptr<IPC::ChannelProxy> channel_proxy_;
|
|
|
| - base::ProcessHandle client_process_;
|
| + base::Process client_process_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(IPCTestBase);
|
| };
|
|
|