// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_IPC_KEYBOARD_LAYOUT_MONITOR_H_ #define REMOTING_HOST_IPC_KEYBOARD_LAYOUT_MONITOR_H_ #include "base/functional/callback.h" #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "remoting/host/keyboard_layout_monitor.h" namespace remoting { class DesktopSessionProxy; // KeyboardLayoutMonitor implementations are responsible for monitoring the // active keyboard layout within the CRD session on the host, and triggering a // callback whenever it changes. class IpcKeyboardLayoutMonitor : public KeyboardLayoutMonitor { … }; } // namespace remoting #endif // REMOTING_HOST_IPC_KEYBOARD_LAYOUT_MONITOR_H_