Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: ui/events/ozone/layout/layout_util.cc

Issue 954943003: [KeyboardEvent] Use DOM |code| rather than Windows-based key code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "ui/events/ozone/layout/layout_util.h"
6
7 #include "ui/events/event_constants.h"
8 #include "ui/events/keycodes/dom3/dom_key.h"
9
10 namespace ui {
11
12 int ModifierDomKeyToEventFlag(DomKey key) {
13 switch (key) {
14 case DomKey::ALT:
15 return EF_ALT_DOWN;
16 case DomKey::ALT_GRAPH:
17 return EF_ALTGR_DOWN;
18 // ChromeOS uses F16 to represent CapsLock before the rewriting stage,
19 // based on the historical X11 implementation.
20 // TODO post-X11: Switch to use CapsLock uniformly.
21 case DomKey::F16:
22 case DomKey::CAPS_LOCK:
23 return EF_CAPS_LOCK_DOWN;
24 case DomKey::CONTROL:
25 return EF_CONTROL_DOWN;
26 case DomKey::HYPER:
27 return EF_MOD3_DOWN;
28 case DomKey::META:
29 return EF_ALT_DOWN;
30 case DomKey::OS:
31 return EF_COMMAND_DOWN;
32 case DomKey::SHIFT:
33 return EF_SHIFT_DOWN;
34 case DomKey::SUPER:
35 return EF_MOD3_DOWN;
36 default:
37 return EF_NONE;
38 }
39 // Not represented:
40 // DomKey::ACCEL
41 // DomKey::FN
42 // DomKey::FN_LOCK
43 // DomKey::NUM_LOCK
44 // DomKey::SCROLL_LOCK
45 // DomKey::SYMBOL
46 // DomKey::SYMBOL_LOCK
47 }
48
49 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/ozone/layout/layout_util.h ('k') | ui/events/ozone/layout/stub/stub_keyboard_layout_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698