chromium/ui/events/ozone/layout/no/no_keyboard_layout_engine.cc

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

#include "ui/events/ozone/layout/no/no_keyboard_layout_engine.h"

namespace ui {

std::string_view NoKeyboardLayoutEngine::GetLayoutName() const {}

bool NoKeyboardLayoutEngine::CanSetCurrentLayout() const {}

void NoKeyboardLayoutEngine::SetCurrentLayoutByName(
    const std::string& layout_name,
    base::OnceCallback<void(bool)> callback) {}

bool NoKeyboardLayoutEngine::SetCurrentLayoutFromBuffer(const char* keymap_str,
                                                        size_t size) {}

bool NoKeyboardLayoutEngine::UsesISOLevel5Shift() const {}

bool NoKeyboardLayoutEngine::UsesAltGr() const {}

bool NoKeyboardLayoutEngine::Lookup(DomCode dom_code,
                                    int flags,
                                    DomKey* dom_key,
                                    KeyboardCode* key_code) const {}

void NoKeyboardLayoutEngine::SetInitCallbackForTest(base::OnceClosure closure) {}

}  // namespace ui