| Index: content/common/in_process_child_thread_params.cc
|
| diff --git a/content/common/in_process_child_thread_params.cc b/content/common/in_process_child_thread_params.cc
|
| index 84157997e06982ac42f0e805d5bca476660a9ca5..25162b7cddc7ae814963bc5af161e0a03f758857 100644
|
| --- a/content/common/in_process_child_thread_params.cc
|
| +++ b/content/common/in_process_child_thread_params.cc
|
| @@ -9,8 +9,10 @@ namespace content {
|
| InProcessChildThreadParams::InProcessChildThreadParams(
|
| const std::string& channel_name,
|
| scoped_refptr<base::SequencedTaskRunner> io_runner,
|
| - mojo::MessagePipeHandle handle)
|
| - : channel_name_(channel_name), io_runner_(io_runner), handle_(handle) {}
|
| + mojo::MessagePipeHandle handle,
|
| + const std::string& application_token)
|
| + : channel_name_(channel_name), io_runner_(io_runner), handle_(handle),
|
| + application_token_(application_token) {}
|
|
|
| InProcessChildThreadParams::InProcessChildThreadParams(
|
| const InProcessChildThreadParams& other) = default;
|
|
|