chromium/remoting/host/input_monitor/local_hotkey_input_monitor_linux.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/functional/callback.h"
#include "base/notreached.h"
#include "base/task/single_thread_task_runner.h"
#include "remoting/host/input_monitor/local_hotkey_input_monitor.h"
#include "remoting/host/linux/wayland_utils.h"

#if defined(REMOTING_USE_X11)
#include "remoting/host/input_monitor/local_hotkey_input_monitor_x11.h"
#endif

namespace remoting {

std::unique_ptr<LocalHotkeyInputMonitor> LocalHotkeyInputMonitor::Create(
    scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
    scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
    scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
    base::OnceClosure disconnect_callback) {}

}  // namespace remoting