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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 AXMediaCurrentTimeDisplayHelp, | 62 AXMediaCurrentTimeDisplayHelp, |
63 AXMediaDefault, | 63 AXMediaDefault, |
64 AXMediaEnterFullscreenButton, | 64 AXMediaEnterFullscreenButton, |
65 AXMediaEnterFullscreenButtonHelp, | 65 AXMediaEnterFullscreenButtonHelp, |
66 AXMediaExitFullscreenButton, | 66 AXMediaExitFullscreenButton, |
67 AXMediaExitFullscreenButtonHelp, | 67 AXMediaExitFullscreenButtonHelp, |
68 AXMediaHideClosedCaptionsButton, | 68 AXMediaHideClosedCaptionsButton, |
69 AXMediaHideClosedCaptionsButtonHelp, | 69 AXMediaHideClosedCaptionsButtonHelp, |
70 AXMediaMuteButton, | 70 AXMediaMuteButton, |
71 AXMediaMuteButtonHelp, | 71 AXMediaMuteButtonHelp, |
| 72 AxMediaOverflowButton, |
72 AXMediaPauseButton, | 73 AXMediaPauseButton, |
73 AXMediaPauseButtonHelp, | 74 AXMediaPauseButtonHelp, |
74 AXMediaPlayButton, | 75 AXMediaPlayButton, |
75 AXMediaPlayButtonHelp, | 76 AXMediaPlayButtonHelp, |
76 AXMediaShowClosedCaptionsButton, | 77 AXMediaShowClosedCaptionsButton, |
77 AXMediaShowClosedCaptionsButtonHelp, | 78 AXMediaShowClosedCaptionsButtonHelp, |
78 AXMediaSlider, // Deprecated. | 79 AXMediaSlider, // Deprecated. |
79 AXMediaSliderThumb, // Deprecated. | 80 AXMediaSliderThumb, // Deprecated. |
80 AXMediaSliderThumbHelp, // Deprecated. | 81 AXMediaSliderThumbHelp, // Deprecated. |
81 AXMediaStatusDisplay, | 82 AXMediaStatusDisplay, |
(...skipping 30 matching lines...) Expand all Loading... |
112 InputElementAltText, | 113 InputElementAltText, |
113 KeygenMenuHighGradeKeySize, | 114 KeygenMenuHighGradeKeySize, |
114 KeygenMenuMediumGradeKeySize, | 115 KeygenMenuMediumGradeKeySize, |
115 MissingPluginText, | 116 MissingPluginText, |
116 MultipleFileUploadText, | 117 MultipleFileUploadText, |
117 OtherColorLabel, | 118 OtherColorLabel, |
118 OtherDateLabel, | 119 OtherDateLabel, |
119 OtherMonthLabel, | 120 OtherMonthLabel, |
120 OtherTimeLabel, | 121 OtherTimeLabel, |
121 OtherWeekLabel, | 122 OtherWeekLabel, |
| 123 OverflowMenuCaptions, |
| 124 OverflowMenuCast, |
| 125 OverflowMenuFullscreen, |
| 126 OverflowMenuStopCast, |
| 127 OverflowMenuMute, |
| 128 OverflowMenuUnmute, |
122 // PlaceholderForDayOfMonthField is for day placeholder text, e.g. | 129 // PlaceholderForDayOfMonthField is for day placeholder text, e.g. |
123 // "dd", for date field used in multiple fields "date", "datetime", and | 130 // "dd", for date field used in multiple fields "date", "datetime", and |
124 // "datetime-local" input UI instead of "--". | 131 // "datetime-local" input UI instead of "--". |
125 PlaceholderForDayOfMonthField, | 132 PlaceholderForDayOfMonthField, |
126 // PlaceholderForfMonthField is for month placeholder text, e.g. | 133 // PlaceholderForfMonthField is for month placeholder text, e.g. |
127 // "mm", for month field used in multiple fields "date", "datetime", and | 134 // "mm", for month field used in multiple fields "date", "datetime", and |
128 // "datetime-local" input UI instead of "--". | 135 // "datetime-local" input UI instead of "--". |
129 PlaceholderForMonthField, | 136 PlaceholderForMonthField, |
130 // PlaceholderForYearField is for year placeholder text, e.g. "yyyy", | 137 // PlaceholderForYearField is for year placeholder text, e.g. "yyyy", |
131 // for year field used in multiple fields "date", "datetime", and | 138 // for year field used in multiple fields "date", "datetime", and |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ValidationValueMissingForRadio, | 178 ValidationValueMissingForRadio, |
172 ValidationValueMissingForSelect, | 179 ValidationValueMissingForSelect, |
173 WeekFormatTemplate, | 180 WeekFormatTemplate, |
174 WeekNumberLabel, | 181 WeekNumberLabel, |
175 }; | 182 }; |
176 }; | 183 }; |
177 | 184 |
178 } // namespace blink | 185 } // namespace blink |
179 | 186 |
180 #endif | 187 #endif |
OLD | NEW |