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 18 matching lines...) Expand all Loading... |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebLocalizedString_h | 31 #ifndef WebLocalizedString_h |
32 #define WebLocalizedString_h | 32 #define WebLocalizedString_h |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 struct WebLocalizedString { | 36 struct WebLocalizedString { |
37 enum Name { | 37 enum Name { |
38 AXAMPMFieldText, | 38 AXAMPMFieldText, |
39 AXButtonActionVerb, | |
40 AXCalendarShowMonthSelector, | 39 AXCalendarShowMonthSelector, |
41 AXCalendarShowNextMonth, | 40 AXCalendarShowNextMonth, |
42 AXCalendarShowPreviousMonth, | 41 AXCalendarShowPreviousMonth, |
43 AXCalendarWeekDescription, | 42 AXCalendarWeekDescription, |
44 AXCheckedCheckBoxActionVerb, | |
45 AXDayOfMonthFieldText, | 43 AXDayOfMonthFieldText, |
46 AXDefaultActionVerb, | |
47 AXHeadingText, // Deprecated. | 44 AXHeadingText, // Deprecated. |
48 AXHourFieldText, | 45 AXHourFieldText, |
49 AXImageMapText, // Deprecated. | 46 AXImageMapText, // Deprecated. |
50 AXLinkActionVerb, | |
51 AXLinkText, // Deprecated. | 47 AXLinkText, // Deprecated. |
52 AXListMarkerText, // Deprecated. | 48 AXListMarkerText, // Deprecated. |
53 AXMediaAudioElement, | 49 AXMediaAudioElement, |
54 AXMediaAudioElementHelp, | 50 AXMediaAudioElementHelp, |
55 AXMediaAudioSliderHelp, | 51 AXMediaAudioSliderHelp, |
56 AXMediaCastOffButton, | 52 AXMediaCastOffButton, |
57 AXMediaCastOffButtonHelp, | 53 AXMediaCastOffButtonHelp, |
58 AXMediaCastOnButton, | 54 AXMediaCastOnButton, |
59 AXMediaCastOnButtonHelp, | 55 AXMediaCastOnButtonHelp, |
60 AXMediaCurrentTimeDisplay, | 56 AXMediaCurrentTimeDisplay, |
(...skipping 24 matching lines...) Expand all Loading... |
85 AXMediaTimeRemainingDisplay, | 81 AXMediaTimeRemainingDisplay, |
86 AXMediaTimeRemainingDisplayHelp, | 82 AXMediaTimeRemainingDisplayHelp, |
87 AXMediaUnMuteButton, | 83 AXMediaUnMuteButton, |
88 AXMediaUnMuteButtonHelp, | 84 AXMediaUnMuteButtonHelp, |
89 AXMediaVideoElement, | 85 AXMediaVideoElement, |
90 AXMediaVideoElementHelp, | 86 AXMediaVideoElementHelp, |
91 AXMediaVideoSliderHelp, | 87 AXMediaVideoSliderHelp, |
92 AXMillisecondFieldText, | 88 AXMillisecondFieldText, |
93 AXMinuteFieldText, | 89 AXMinuteFieldText, |
94 AXMonthFieldText, | 90 AXMonthFieldText, |
95 AXPopUpButtonActionVerb, | |
96 AXRadioButtonActionVerb, | |
97 AXSecondFieldText, | 91 AXSecondFieldText, |
98 AXTextFieldActionVerb, | |
99 AXUncheckedCheckBoxActionVerb, | |
100 AXWebAreaText, // Deprecated. | 92 AXWebAreaText, // Deprecated. |
101 AXWeekOfYearFieldText, | 93 AXWeekOfYearFieldText, |
102 AXYearFieldText, | 94 AXYearFieldText, |
103 BlockedPluginText, | 95 BlockedPluginText, |
104 CalendarClear, | 96 CalendarClear, |
105 CalendarToday, | 97 CalendarToday, |
106 DateFormatDayInMonthLabel, | 98 DateFormatDayInMonthLabel, |
107 DateFormatMonthLabel, | 99 DateFormatMonthLabel, |
108 DateFormatYearLabel, | 100 DateFormatYearLabel, |
109 DetailsLabel, | 101 DetailsLabel, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 ValidationValueMissingForRadio, | 175 ValidationValueMissingForRadio, |
184 ValidationValueMissingForSelect, | 176 ValidationValueMissingForSelect, |
185 WeekFormatTemplate, | 177 WeekFormatTemplate, |
186 WeekNumberLabel, | 178 WeekNumberLabel, |
187 }; | 179 }; |
188 }; | 180 }; |
189 | 181 |
190 } // namespace blink | 182 } // namespace blink |
191 | 183 |
192 #endif | 184 #endif |
OLD | NEW |