Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 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 /* | 5 /* |
| 6 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com. All rights reserved. | 6 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com. All rights reserved. |
| 7 * Copyright (C) 2008, 2009 Google Inc. | 7 * Copyright (C) 2008, 2009 Google Inc. |
| 8 * | 8 * |
| 9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
| 10 * modification, are permitted provided that the following conditions | 10 * modification, are permitted provided that the following conditions |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 202 VKEY_PLAY = 0xFA, | 202 VKEY_PLAY = 0xFA, |
| 203 VKEY_ZOOM = 0xFB, | 203 VKEY_ZOOM = 0xFB, |
| 204 VKEY_NONAME = 0xFC, | 204 VKEY_NONAME = 0xFC, |
| 205 VKEY_PA1 = 0xFD, | 205 VKEY_PA1 = 0xFD, |
| 206 VKEY_OEM_CLEAR = 0xFE, | 206 VKEY_OEM_CLEAR = 0xFE, |
| 207 VKEY_UNKNOWN = 0, | 207 VKEY_UNKNOWN = 0, |
| 208 | 208 |
| 209 // POSIX specific VKEYs. Note that as of Windows SDK 7.1, 0x97-9F, 0xD8-DA, | 209 // POSIX specific VKEYs. Note that as of Windows SDK 7.1, 0x97-9F, 0xD8-DA, |
| 210 // and 0xE8 are unassigned. | 210 // and 0xE8 are unassigned. |
| 211 VKEY_WLAN = 0x97, | 211 VKEY_WLAN = 0x97, |
| 212 VKEY_POWER = 0x98, | |
|
Daniel Erat
2012/08/22 22:20:47
Running out of these... :-/
mazda
2012/08/22 23:03:15
There are a few more unassigned values like 0x07,
Daniel Erat
2012/08/22 23:09:29
Maybe it's not a huge concern. I think that we've
| |
| 212 VKEY_BRIGHTNESS_DOWN = 0xD8, | 213 VKEY_BRIGHTNESS_DOWN = 0xD8, |
| 213 VKEY_BRIGHTNESS_UP = 0xD9, | 214 VKEY_BRIGHTNESS_UP = 0xD9, |
| 214 VKEY_KBD_BRIGHTNESS_DOWN = 0xDA, | 215 VKEY_KBD_BRIGHTNESS_DOWN = 0xDA, |
| 215 VKEY_KBD_BRIGHTNESS_UP = 0xE8 | 216 VKEY_KBD_BRIGHTNESS_UP = 0xE8 |
| 216 }; | 217 }; |
| 217 | 218 |
| 218 } // namespace ui | 219 } // namespace ui |
| 219 | 220 |
| 220 #endif // UI_BASE_KEYCODES_KEYBOARD_CODES_POSIX_H_ | 221 #endif // UI_BASE_KEYCODES_KEYBOARD_CODES_POSIX_H_ |
| OLD | NEW |