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

Side by Side Diff: ui/base/keycodes/keyboard_codes_posix.h

Issue 10696161: Do not ignore F3-F7 and F9 key presses on an Apple keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comment Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 VKEY_CRSEL = 0xF7, 200 VKEY_CRSEL = 0xF7,
201 VKEY_EXSEL = 0xF8, 201 VKEY_EXSEL = 0xF8,
202 VKEY_EREOF = 0xF9, 202 VKEY_EREOF = 0xF9,
203 VKEY_PLAY = 0xFA, 203 VKEY_PLAY = 0xFA,
204 VKEY_ZOOM = 0xFB, 204 VKEY_ZOOM = 0xFB,
205 VKEY_NONAME = 0xFC, 205 VKEY_NONAME = 0xFC,
206 VKEY_PA1 = 0xFD, 206 VKEY_PA1 = 0xFD,
207 VKEY_OEM_CLEAR = 0xFE, 207 VKEY_OEM_CLEAR = 0xFE,
208 VKEY_UNKNOWN = 0, 208 VKEY_UNKNOWN = 0,
209 209
210 // POSIX specific VKEYs. Note that as of Windows SDK 7.1, 0xD8-DA are 210 // POSIX specific VKEYs. Note that as of Windows SDK 7.1, 0xD8-DA and 0xE8 are
211 // unassigned. 211 // unassigned.
212 VKEY_BRIGHTNESS_DOWN = 0xD8, 212 VKEY_BRIGHTNESS_DOWN = 0xD8,
213 VKEY_BRIGHTNESS_UP = 0xD9 213 VKEY_BRIGHTNESS_UP = 0xD9,
214 VKEY_KBD_BRIGHTNESS_DOWN = 0xDA,
215 VKEY_KBD_BRIGHTNESS_UP = 0xE8
214 }; 216 };
215 217
216 } // namespace ui 218 } // namespace ui
217 219
218 #endif // UI_BASE_KEYCODES_KEYBOARD_CODES_POSIX_H_ 220 #endif // UI_BASE_KEYCODES_KEYBOARD_CODES_POSIX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698