OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 WebAXRoleMenuListOption, | 144 WebAXRoleMenuListOption, |
145 WebAXRoleMenuListPopup, | 145 WebAXRoleMenuListPopup, |
146 WebAXRoleMenu, | 146 WebAXRoleMenu, |
147 WebAXRoleMeter, | 147 WebAXRoleMeter, |
148 WebAXRoleNavigation, | 148 WebAXRoleNavigation, |
149 WebAXRoleNone, | 149 WebAXRoleNone, |
150 WebAXRoleNote, | 150 WebAXRoleNote, |
151 WebAXRoleOutline, | 151 WebAXRoleOutline, |
152 WebAXRoleParagraph, | 152 WebAXRoleParagraph, |
153 WebAXRolePopUpButton, | 153 WebAXRolePopUpButton, |
| 154 WebAXRolePre, |
154 WebAXRolePresentational, | 155 WebAXRolePresentational, |
155 WebAXRoleProgressIndicator, | 156 WebAXRoleProgressIndicator, |
156 WebAXRoleRadioButton, | 157 WebAXRoleRadioButton, |
157 WebAXRoleRadioGroup, | 158 WebAXRoleRadioGroup, |
158 WebAXRoleRegion, | 159 WebAXRoleRegion, |
159 WebAXRoleRootWebArea, | 160 WebAXRoleRootWebArea, |
160 WebAXRoleRowHeader, | 161 WebAXRoleRowHeader, |
161 WebAXRoleRow, | 162 WebAXRoleRow, |
162 WebAXRoleRulerMarker, | 163 WebAXRoleRulerMarker, |
163 WebAXRoleRuler, | 164 WebAXRoleRuler, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 enum WebAXTextDirection { | 229 enum WebAXTextDirection { |
229 WebAXTextDirectionLR, | 230 WebAXTextDirectionLR, |
230 WebAXTextDirectionRL, | 231 WebAXTextDirectionRL, |
231 WebAXTextDirectionTB, | 232 WebAXTextDirectionTB, |
232 WebAXTextDirectionBT | 233 WebAXTextDirectionBT |
233 }; | 234 }; |
234 | 235 |
235 } // namespace blink | 236 } // namespace blink |
236 | 237 |
237 #endif | 238 #endif |
OLD | NEW |