| Index: remoting/host/remoting_me2me_host.cc
|
| diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc
|
| index 322ff25ae2e03e7b8996da021bfc138fa06beb8f..d214fd13dca71c2b7663ce44c4adfcdb8ec4edfb 100644
|
| --- a/remoting/host/remoting_me2me_host.cc
|
| +++ b/remoting/host/remoting_me2me_host.cc
|
| @@ -5,8 +5,8 @@
|
| // This file implements a standalone host process for Me2Me.
|
|
|
| #include <stddef.h>
|
| -#include <stdint.h>
|
|
|
| +#include <cstdint>
|
| #include <memory>
|
| #include <string>
|
| #include <utility>
|
| @@ -1461,7 +1461,8 @@ void HostProcess::StartHost() {
|
| context_->video_encode_task_runner()));
|
|
|
| if (security_key_auth_policy_enabled_ && security_key_extension_supported_) {
|
| - host_->AddExtension(base::WrapUnique(new SecurityKeyExtension()));
|
| + host_->AddExtension(base::WrapUnique(
|
| + new SecurityKeyExtension(context_->file_task_runner())));
|
| }
|
|
|
| // TODO(simonmorris): Get the maximum session duration from a policy.
|
|
|