| Index: ipc/ipc_channel_proxy.h
|
| diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h
|
| index 9fdffb1ca57233958422589da74cdb33a2d5ad39..495c5eb8a52407eccaf1cd27027e315c9b77df0e 100644
|
| --- a/ipc/ipc_channel_proxy.h
|
| +++ b/ipc/ipc_channel_proxy.h
|
| @@ -97,6 +97,11 @@ class IPC_EXPORT ChannelProxy : public Endpoint, public base::NonThreadSafe {
|
| Listener* listener,
|
| const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
|
|
|
| + // Constructs a ChannelProxy without initializing it.
|
| + ChannelProxy(
|
| + Listener* listener,
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
|
| +
|
| ~ChannelProxy() override;
|
|
|
| // Initializes the channel proxy. Only call this once to initialize a channel
|
| @@ -159,9 +164,6 @@ class IPC_EXPORT ChannelProxy : public Endpoint, public base::NonThreadSafe {
|
| // to the internal state.
|
| ChannelProxy(Context* context);
|
|
|
| - ChannelProxy(
|
| - Listener* listener,
|
| - const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
|
|
|
| // Used internally to hold state that is referenced on the IPC thread.
|
| class Context : public base::RefCountedThreadSafe<Context>,
|
|
|