| Index: chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/native_message_process_host.cc b/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| index bf2c37cfaf1b45e94ce1e6b17a224aa731c0c223..1974d6abb78f694f5f2143e4af2324ba841eb322 100644
|
| --- a/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| +++ b/chrome/browser/extensions/api/messaging/native_message_process_host.cc
|
| @@ -191,9 +191,8 @@ void NativeMessageProcessHost::Start(Client* client) {
|
| // It's safe to use base::Unretained() here because NativeMessagePort always
|
| // deletes us on the IO thread.
|
| task_runner_->PostTask(
|
| - FROM_HERE,
|
| - base::Bind(&NativeMessageProcessHost::LaunchHostProcess,
|
| - weak_factory_.GetWeakPtr()));
|
| + FROM_HERE, base::BindOnce(&NativeMessageProcessHost::LaunchHostProcess,
|
| + weak_factory_.GetWeakPtr()));
|
| }
|
|
|
| scoped_refptr<base::SingleThreadTaskRunner>
|
|
|