// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/linux/keyboard_layout_monitor_utils.h" namespace remoting { // GDK doesn't return unicode value for dead keys, so we map them here. const char* DeadKeyToUtf8String(guint keyval) { … } protocol::LayoutKeyFunction KeyvalToFunction(guint keyval) { … } } // namespace remoting