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, | |
dmazzoni
2016/11/22 01:01:08
These also need to match the style in this source
| |
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
323 | 335 |
324 // Text affinity for the start or end of a selection. | 336 // Text affinity for the start or end of a selection. |
325 enum WebAXTextAffinity { | 337 enum WebAXTextAffinity { |
326 WebAXTextAffinityUpstream, | 338 WebAXTextAffinityUpstream, |
327 WebAXTextAffinityDownstream | 339 WebAXTextAffinityDownstream |
328 }; | 340 }; |
329 | 341 |
330 } // namespace blink | 342 } // namespace blink |
331 | 343 |
332 #endif | 344 #endif |
OLD | NEW |