| Index: content/child/child_thread_impl.h
|
| diff --git a/content/child/child_thread_impl.h b/content/child/child_thread_impl.h
|
| index fe2cc28f1e916509272759e999691f3ca0e8f721..14763952589122d25ac00ae50e8819c4059ae3ec 100644
|
| --- a/content/child/child_thread_impl.h
|
| +++ b/content/child/child_thread_impl.h
|
| @@ -221,8 +221,7 @@ class CONTENT_EXPORT ChildThreadImpl
|
|
|
| // 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,
|
| - mojo::ScopedMessagePipeHandle handle);
|
| + void ConnectChannel(bool use_mojo_channel, const std::string& ipc_token);
|
|
|
| // IPC message handlers.
|
| void OnShutdown();
|
| @@ -305,7 +304,7 @@ struct ChildThreadImpl::Options {
|
| bool use_mojo_channel;
|
| scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner;
|
| std::vector<IPC::MessageFilter*> startup_filters;
|
| - mojo::MessagePipeHandle in_process_message_pipe_handle;
|
| + std::string in_process_ipc_token;
|
| std::string in_process_application_token;
|
|
|
| private:
|
|
|