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

Side by Side Diff: ui/events/keycodes/dom/dom_key_data.h

Issue 1136503003: Consolidate ui/events/keycodes/dom[34]/ into .../dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
Wez 2015/05/08 01:15:59 Style guide suggests that this file should be a .i
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 DOM_KEY_MAP and DOM_KEY_MAP_DECLARATION. 7 // macros DOM_KEY_MAP and DOM_KEY_MAP_DECLARATION.
8 8
9 // This is a table of DOM Level 3 .key values, used to generate identifiers 9 // This is a table of DOM Level 3 .key values, used to generate identifiers
10 // (enums) and string tables. These names are defined by: 10 // (enums) and string tables. These names are defined by:
11 // 11 //
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 DOM_KEY_MAP("STBPower", STB_POWER), 367 DOM_KEY_MAP("STBPower", STB_POWER),
368 DOM_KEY_MAP("Subtitle", SUBTITLE), 368 DOM_KEY_MAP("Subtitle", SUBTITLE),
369 DOM_KEY_MAP("Teletext", TELETEXT), 369 DOM_KEY_MAP("Teletext", TELETEXT),
370 DOM_KEY_MAP("TV", T_V), 370 DOM_KEY_MAP("TV", T_V),
371 DOM_KEY_MAP("TVInput", TV_INPUT), 371 DOM_KEY_MAP("TVInput", TV_INPUT),
372 DOM_KEY_MAP("TVPower", TV_POWER), 372 DOM_KEY_MAP("TVPower", TV_POWER),
373 DOM_KEY_MAP("VideoModeNext", VIDEO_MODE_NEXT), 373 DOM_KEY_MAP("VideoModeNext", VIDEO_MODE_NEXT),
374 DOM_KEY_MAP("Wink", WINK), 374 DOM_KEY_MAP("Wink", WINK),
375 DOM_KEY_MAP("ZoomToggle", ZOOM_TOGGLE), 375 DOM_KEY_MAP("ZoomToggle", ZOOM_TOGGLE),
376 }; 376 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698