| Index: ipc/ipc_sync_channel.h
|
| diff --git a/ipc/ipc_sync_channel.h b/ipc/ipc_sync_channel.h
|
| index 3157279f277fabed7ea75ae6a32b63c2b1af7acc..bf899d2273ceef5b3873b2e205e3370645f7f49c 100644
|
| --- a/ipc/ipc_sync_channel.h
|
| +++ b/ipc/ipc_sync_channel.h
|
| @@ -71,7 +71,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
|
| SyncChannel(const IPC::ChannelHandle& channel_handle,
|
| Channel::Mode mode,
|
| Channel::Listener* listener,
|
| - base::MessageLoopProxy* ipc_message_loop,
|
| + base::SingleThreadTaskRunner* ipc_task_runner,
|
| bool create_pipe_now,
|
| base::WaitableEvent* shutdown_event);
|
|
|
| @@ -79,7 +79,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
|
| // initialize the channel. This two-step setup allows message filters to be
|
| // added before any messages are sent or received.
|
| SyncChannel(Channel::Listener* listener,
|
| - base::MessageLoopProxy* ipc_message_loop,
|
| + base::SingleThreadTaskRunner* ipc_task_runner,
|
| base::WaitableEvent* shutdown_event);
|
|
|
| virtual ~SyncChannel();
|
| @@ -120,7 +120,7 @@ class IPC_EXPORT SyncChannel : public ChannelProxy,
|
| public base::WaitableEventWatcher::Delegate {
|
| public:
|
| SyncContext(Channel::Listener* listener,
|
| - base::MessageLoopProxy* ipc_thread,
|
| + base::SingleThreadTaskRunner* ipc_task_runner,
|
| base::WaitableEvent* shutdown_event);
|
|
|
| // Adds information about an outgoing sync message to the context so that
|
|
|