Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 }; |
| OLD | NEW |