local_mouse_input_monitor_wayland.cc 780 B

123456789101112131415161718192021
  1. // Copyright 2022 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "remoting/host/input_monitor/local_pointer_input_monitor.h"
  5. #include "base/notreached.h"
  6. #include "base/task/single_thread_task_runner.h"
  7. namespace remoting {
  8. std::unique_ptr<LocalPointerInputMonitor> LocalPointerInputMonitor::Create(
  9. scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
  10. scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
  11. scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
  12. LocalInputMonitor::PointerMoveCallback on_mouse_move,
  13. base::OnceClosure disconnect_callback) {
  14. NOTIMPLEMENTED();
  15. return nullptr;
  16. }
  17. } // namespace remoting