| Index: ipc/ipc_test_base.h
|
| diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h
|
| index 86178b0c5f0130d6a66be16ca038544cf31d51c7..0646363805b19bee59391ab23053d53f602dd183 100644
|
| --- a/ipc/ipc_test_base.h
|
| +++ b/ipc/ipc_test_base.h
|
| @@ -105,6 +105,10 @@ class IPCTestBase : public base::MultiProcessTest {
|
|
|
| IPC::Channel* channel() { return channel_.get(); }
|
| IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); }
|
| + void set_channel_proxy(std::unique_ptr<IPC::ChannelProxy> proxy) {
|
| + DCHECK(!channel_proxy_);
|
| + channel_proxy_.swap(proxy);
|
| + }
|
|
|
| const base::Process& client_process() const { return client_process_; }
|
| scoped_refptr<base::SequencedTaskRunner> task_runner();
|
|
|