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