| 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 struct WebLocalizedString { | 36 struct WebLocalizedString { |
| 37 enum Name { | 37 enum Name { |
| 38 AXAMPMFieldText, | 38 AXAMPMFieldText, |
| 39 AXButtonActionVerb, | 39 AXButtonActionVerb, |
| 40 AXCalendarShowMonthSelector, | 40 AXCalendarShowMonthSelector, |
| 41 AXCalendarShowNextMonth, | 41 AXCalendarShowNextMonth, |
| 42 AXCalendarShowPreviousMonth, | 42 AXCalendarShowPreviousMonth, |
| 43 AXCalendarWeekDescription, | 43 AXCalendarWeekDescription, |
| 44 AXCheckedCheckBoxActionVerb, | 44 AXCheckedCheckBoxActionVerb, |
| 45 AXDateTimeFieldEmptyValueText, | |
| 46 AXDayOfMonthFieldText, | 45 AXDayOfMonthFieldText, |
| 47 AXDefaultActionVerb, | 46 AXDefaultActionVerb, |
| 48 AXHeadingText, // Deprecated. | 47 AXHeadingText, // Deprecated. |
| 49 AXHourFieldText, | 48 AXHourFieldText, |
| 50 AXImageMapText, // Deprecated. | 49 AXImageMapText, // Deprecated. |
| 51 AXLinkActionVerb, | 50 AXLinkActionVerb, |
| 52 AXLinkText, // Deprecated. | 51 AXLinkText, // Deprecated. |
| 53 AXListMarkerText, // Deprecated. | 52 AXListMarkerText, // Deprecated. |
| 54 AXMediaAudioElement, | 53 AXMediaAudioElement, |
| 55 AXMediaAudioElementHelp, | 54 AXMediaAudioElementHelp, |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 ValidationValueMissingForRadio, | 170 ValidationValueMissingForRadio, |
| 172 ValidationValueMissingForSelect, | 171 ValidationValueMissingForSelect, |
| 173 WeekFormatTemplate, | 172 WeekFormatTemplate, |
| 174 WeekNumberLabel, | 173 WeekNumberLabel, |
| 175 }; | 174 }; |
| 176 }; | 175 }; |
| 177 | 176 |
| 178 } // namespace blink | 177 } // namespace blink |
| 179 | 178 |
| 180 #endif | 179 #endif |
| OLD | NEW |