keyboard_layout_monitor_wayland.cc 706 B

12345678910111213141516171819202122
  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/keyboard_layout_monitor.h"
  5. #include "base/callback.h"
  6. #include "base/memory/scoped_refptr.h"
  7. #include "base/notreached.h"
  8. #include "base/task/single_thread_task_runner.h"
  9. #include "remoting/proto/control.pb.h"
  10. namespace remoting {
  11. std::unique_ptr<KeyboardLayoutMonitor> KeyboardLayoutMonitor::Create(
  12. base::RepeatingCallback<void(const protocol::KeyboardLayout&)> callback,
  13. scoped_refptr<base::SingleThreadTaskRunner> input_task_runner) {
  14. NOTIMPLEMENTED();
  15. return nullptr;
  16. }
  17. } // namespace remoting