OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
53 AXMediaAudioElement, | 53 AXMediaAudioElement, |
54 AXMediaAudioElementHelp, | 54 AXMediaAudioElementHelp, |
55 AXMediaAudioSliderHelp, | 55 AXMediaAudioSliderHelp, |
56 AxMediaCastOffButton, | 56 AxMediaCastOffButton, |
57 AxMediaCastOffButtonHelp, | 57 AxMediaCastOffButtonHelp, |
58 AxMediaCastOnButton, | 58 AxMediaCastOnButton, |
59 AxMediaCastOnButtonHelp, | 59 AxMediaCastOnButtonHelp, |
60 AXMediaCurrentTimeDisplay, | 60 AXMediaCurrentTimeDisplay, |
61 AXMediaCurrentTimeDisplayHelp, | 61 AXMediaCurrentTimeDisplayHelp, |
62 AXMediaDefault, | 62 AXMediaDefault, |
63 AxMediaDownloadButton, | |
dmazzoni
2016/10/10 03:39:52
Capitalization doesn't seem to match the rest of t
mlamouri (slow - plz ping)
2016/10/10 04:27:13
Done. I fixed some others that were not matching t
| |
64 AxMediaDownloadButtonHelp, | |
63 AXMediaEnterFullscreenButton, | 65 AXMediaEnterFullscreenButton, |
64 AXMediaEnterFullscreenButtonHelp, | 66 AXMediaEnterFullscreenButtonHelp, |
65 AXMediaExitFullscreenButton, | 67 AXMediaExitFullscreenButton, |
66 AXMediaExitFullscreenButtonHelp, | 68 AXMediaExitFullscreenButtonHelp, |
67 AXMediaHideClosedCaptionsButton, | 69 AXMediaHideClosedCaptionsButton, |
68 AXMediaHideClosedCaptionsButtonHelp, | 70 AXMediaHideClosedCaptionsButtonHelp, |
69 AXMediaMuteButton, | 71 AXMediaMuteButton, |
70 AXMediaMuteButtonHelp, | 72 AXMediaMuteButtonHelp, |
71 AxMediaOverflowButton, | 73 AxMediaOverflowButton, |
74 AxMediaOverflowButtonHelp, | |
72 AXMediaPauseButton, | 75 AXMediaPauseButton, |
73 AXMediaPauseButtonHelp, | 76 AXMediaPauseButtonHelp, |
74 AXMediaPlayButton, | 77 AXMediaPlayButton, |
75 AXMediaPlayButtonHelp, | 78 AXMediaPlayButtonHelp, |
76 AXMediaShowClosedCaptionsButton, | 79 AXMediaShowClosedCaptionsButton, |
77 AXMediaShowClosedCaptionsButtonHelp, | 80 AXMediaShowClosedCaptionsButtonHelp, |
78 AXMediaSlider, // Deprecated. | 81 AXMediaSlider, // Deprecated. |
79 AXMediaSliderThumb, // Deprecated. | 82 AXMediaSliderThumb, // Deprecated. |
80 AXMediaSliderThumbHelp, // Deprecated. | 83 AXMediaSliderThumbHelp, // Deprecated. |
81 AXMediaStatusDisplay, | 84 AXMediaStatusDisplay, |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
181 ValidationValueMissingForRadio, | 184 ValidationValueMissingForRadio, |
182 ValidationValueMissingForSelect, | 185 ValidationValueMissingForSelect, |
183 WeekFormatTemplate, | 186 WeekFormatTemplate, |
184 WeekNumberLabel, | 187 WeekNumberLabel, |
185 }; | 188 }; |
186 }; | 189 }; |
187 | 190 |
188 } // namespace blink | 191 } // namespace blink |
189 | 192 |
190 #endif | 193 #endif |
OLD | NEW |