blob: 2ec8e49b1f3f0339d2da9859467d2bfba9f262d5 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/input_monitor/local_keyboard_input_monitor.h"
#include <utility>
#include "base/callback.h"
#include "base/single_thread_task_runner.h"
namespace remoting {
std::unique_ptr<LocalKeyboardInputMonitor> LocalKeyboardInputMonitor::Create(
scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
base::RepeatingClosure on_key_event_callback,
base::OnceClosure disconnect_callback) {
return nullptr;
}
} // namespace remoting