[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / ui / events / ozone / layout / no / no_keyboard_layout_engine.cc
blob064b4da2fd21efe7a580bb024dca67a57b97c78d
1 // Copyright 2014 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.
5 #include "ui/events/ozone/layout/no/no_keyboard_layout_engine.h"
7 namespace ui {
9 bool NoKeyboardLayoutEngine::CanSetCurrentLayout() const {
10 return false;
13 bool NoKeyboardLayoutEngine::SetCurrentLayoutByName(
14 const std::string& layout_name) {
15 return false;
18 bool NoKeyboardLayoutEngine::UsesISOLevel5Shift() const {
19 return false;
22 bool NoKeyboardLayoutEngine::UsesAltGr() const {
23 return false;
26 bool NoKeyboardLayoutEngine::Lookup(DomCode dom_code,
27 int flags,
28 DomKey* dom_key,
29 KeyboardCode* key_code) const {
30 return false;
33 } // namespace ui