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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 WebAXStatePressed, | 218 WebAXStatePressed, |
219 WebAXStateProtected, | 219 WebAXStateProtected, |
220 WebAXStateReadonly, | 220 WebAXStateReadonly, |
221 WebAXStateRequired, | 221 WebAXStateRequired, |
222 WebAXStateSelectable, | 222 WebAXStateSelectable, |
223 WebAXStateSelected, | 223 WebAXStateSelected, |
224 WebAXStateVertical, | 224 WebAXStateVertical, |
225 WebAXStateVisited, | 225 WebAXStateVisited, |
226 }; | 226 }; |
227 | 227 |
| 228 enum class WebAXSupportedAction { |
| 229 None = 0, |
| 230 Activate, |
| 231 Check, |
| 232 Click, |
| 233 Jump, |
| 234 Open, |
| 235 Press, |
| 236 Select, |
| 237 Uncheck |
| 238 }; |
| 239 |
228 enum WebAXTextDirection { | 240 enum WebAXTextDirection { |
229 WebAXTextDirectionLR, | 241 WebAXTextDirectionLR, |
230 WebAXTextDirectionRL, | 242 WebAXTextDirectionRL, |
231 WebAXTextDirectionTB, | 243 WebAXTextDirectionTB, |
232 WebAXTextDirectionBT | 244 WebAXTextDirectionBT |
233 }; | 245 }; |
234 | 246 |
235 // Sort direction, only used for roles = WebAXRoleRowHeader and | 247 // Sort direction, only used for roles = WebAXRoleRowHeader and |
236 // WebAXRoleColumnHeader. | 248 // WebAXRoleColumnHeader. |
237 enum WebAXSortDirection { | 249 enum WebAXSortDirection { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 | 334 |
323 // Text affinity for the start or end of a selection. | 335 // Text affinity for the start or end of a selection. |
324 enum WebAXTextAffinity { | 336 enum WebAXTextAffinity { |
325 WebAXTextAffinityUpstream, | 337 WebAXTextAffinityUpstream, |
326 WebAXTextAffinityDownstream | 338 WebAXTextAffinityDownstream |
327 }; | 339 }; |
328 | 340 |
329 } // namespace blink | 341 } // namespace blink |
330 | 342 |
331 #endif | 343 #endif |
OLD | NEW |