| Index: content/child/child_thread_impl.h
|
| diff --git a/content/child/child_thread_impl.h b/content/child/child_thread_impl.h
|
| index 14763952589122d25ac00ae50e8819c4059ae3ec..fe2cc28f1e916509272759e999691f3ca0e8f721 100644
|
| --- a/content/child/child_thread_impl.h
|
| +++ b/content/child/child_thread_impl.h
|
| @@ -221,7 +221,8 @@
|
|
|
| // We create the channel first without connecting it so we can add filters
|
| // prior to any messages being received, then connect it afterwards.
|
| - void ConnectChannel(bool use_mojo_channel, const std::string& ipc_token);
|
| + void ConnectChannel(bool use_mojo_channel,
|
| + mojo::ScopedMessagePipeHandle handle);
|
|
|
| // IPC message handlers.
|
| void OnShutdown();
|
| @@ -304,7 +305,7 @@
|
| bool use_mojo_channel;
|
| scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner;
|
| std::vector<IPC::MessageFilter*> startup_filters;
|
| - std::string in_process_ipc_token;
|
| + mojo::MessagePipeHandle in_process_message_pipe_handle;
|
| std::string in_process_application_token;
|
|
|
| private:
|
|
|