1 // Copyright 2015 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 #ifndef REMOTING_PROTOCOL_USB_KEY_CODES_H_
6 #define REMOTING_PROTOCOL_USB_KEY_CODES_H_
8 // Frequently used USB key-codes (not comprehensive--add more as needed).
9 // TODO(liaoyuke): This could be cleaned up by reusing the data in
10 // "ui/events/keycodes/dom/keycode_converter_data.inc".
18 kUsbCapsLock
= 0x070039,
20 kUsbInsert
= 0x070049,
21 kUsbDelete
= 0x07004c,
22 kUsbLeftControl
= 0x0700e0,
23 kUsbLeftShift
= 0x0700e1,
24 kUsbLeftAlt
= 0x0700e2,
25 kUsbLeftOs
= 0x0700e3,
26 kUsbRightArrow
= 0x07004f,
27 kUsbRightControl
= 0x0700e4,
28 kUsbRightShift
= 0x0700e5,
29 kUsbRightAlt
= 0x0700e6,
30 kUsbRightOs
= 0x0700e7
33 #endif // REMOTING_PROTOCOL_USB_KEY_CODES_H_