Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Unified Diff: remoting/host/remoting_me2me_host.cc

Issue 2168303003: Removing 'AllowScopedIO' exception from SecurityKeyAuthHandlerLinux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp_dir
Patch Set: Addressing feedback Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698