Add MetricsService::WasLastShutdownClean()
[chromium-blink-merge.git] / remoting / protocol / usb_key_codes.h
blobbdf7d9568a5055f2a5fbf6effa7707b95cd33443
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).
10 enum {
11 kUsbTab = 0x07002b,
12 kUsbCapsLock = 0x070039,
13 kUsbInsert = 0x070049,
14 kUsbDelete = 0x07004c,
15 kUsbLeftControl = 0x0700e0,
16 kUsbLeftShift = 0x0700e1,
17 kUsbLeftAlt = 0x0700e2,
18 kUsbLeftOs = 0x0700e3,
19 kUsbRightControl = 0x0700e4,
20 kUsbRightShift = 0x0700e5,
21 kUsbRightAlt = 0x0700e6,
22 kUsbRightOs = 0x0700e7
25 #endif