Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
|
Wez
2015/05/08 01:15:59
See comment re file naming from style guide.
kpschoedel
2015/05/08 17:38:25
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file has no header guard because it is explicily intended | 5 // This file has no header guard because it is explicily intended |
| 6 // to be included more than once with different definitions of the | 6 // to be included more than once with different definitions of the |
| 7 // macros USB_KEYMAP and USB_KEYMAP_DECLARATION. | 7 // macros USB_KEYMAP and USB_KEYMAP_DECLARATION. |
| 8 | 8 |
| 9 // Data in this file was created by referencing: | 9 // Data in this file was created by referencing: |
| 10 // [0] USB HID Usage Tables, | 10 // [0] USB HID Usage Tables, |
| 11 // http://www.usb.org/developers/hidpage/Hut1_12v2.pdf | 11 // http://www.usb.org/developers/hidpage/Hut1_12v2.pdf |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 472 // USB#0x0c0232: AC View Toggle | 472 // USB#0x0c0232: AC View Toggle |
| 473 USB_KEYMAP(0x0c0232, 0x0000, 0x0000, 0xffff, "ZoomToggle", ZOOM_TOGGLE), | 473 USB_KEYMAP(0x0c0232, 0x0000, 0x0000, 0xffff, "ZoomToggle", ZOOM_TOGGLE), |
| 474 // USB#0x0c0289: AC_Reply | 474 // USB#0x0c0289: AC_Reply |
| 475 USB_KEYMAP(0x0c0289, 0x00f0, 0x0000, 0xffff, "MailReply", MAIL_REPLY), | 475 USB_KEYMAP(0x0c0289, 0x00f0, 0x0000, 0xffff, "MailReply", MAIL_REPLY), |
| 476 // USB#0x0c028b: AC_ForwardMsg (MailForward) | 476 // USB#0x0c028b: AC_ForwardMsg (MailForward) |
| 477 USB_KEYMAP(0x0c028b, 0x00f1, 0x0000, 0xffff, "MailForward", MAIL_FORWARD), | 477 USB_KEYMAP(0x0c028b, 0x00f1, 0x0000, 0xffff, "MailForward", MAIL_FORWARD), |
| 478 // USB#0x0c028c: AC_Send | 478 // USB#0x0c028c: AC_Send |
| 479 USB_KEYMAP(0x0c028c, 0x00ef, 0x0000, 0xffff, "MailSend", MAIL_SEND), | 479 USB_KEYMAP(0x0c028c, 0x00ef, 0x0000, 0xffff, "MailSend", MAIL_SEND), |
| 480 }; | 480 }; |
| 481 | 481 |
| OLD | NEW |