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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 // Sort direction, only used for roles = WebAXRoleRowHeader and | 249 // Sort direction, only used for roles = WebAXRoleRowHeader and |
250 // WebAXRoleColumnHeader. | 250 // WebAXRoleColumnHeader. |
251 enum WebAXSortDirection { | 251 enum WebAXSortDirection { |
252 WebAXSortDirectionUndefined = 0, | 252 WebAXSortDirectionUndefined = 0, |
253 WebAXSortDirectionNone, | 253 WebAXSortDirectionNone, |
254 WebAXSortDirectionAscending, | 254 WebAXSortDirectionAscending, |
255 WebAXSortDirectionDescending, | 255 WebAXSortDirectionDescending, |
256 WebAXSortDirectionOther | 256 WebAXSortDirectionOther |
257 }; | 257 }; |
258 | 258 |
| 259 enum WebAXCheckedState { |
| 260 WebAXCheckedFalse = 0, |
| 261 WebAXCheckedTrue, |
| 262 WebAXCheckedMixed |
| 263 }; |
| 264 |
259 // Expanded State. | 265 // Expanded State. |
260 // These values must match blink::AccessibilityExpanded values. | 266 // These values must match blink::AccessibilityExpanded values. |
261 // Enforced in AssertMatchingEnums.cpp. | 267 // Enforced in AssertMatchingEnums.cpp. |
262 enum WebAXExpanded { | 268 enum WebAXExpanded { |
263 WebAXExpandedUndefined = 0, | 269 WebAXExpandedUndefined = 0, |
264 WebAXExpandedCollapsed, | 270 WebAXExpandedCollapsed, |
265 WebAXExpandedExpanded | 271 WebAXExpandedExpanded |
266 }; | 272 }; |
267 | 273 |
268 // These values must match blink::AccessibilityOrientation values. | 274 // These values must match blink::AccessibilityOrientation values. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 // empty vector. | 385 // empty vector. |
380 enum class WebAXObjectVectorAttribute { | 386 enum class WebAXObjectVectorAttribute { |
381 AriaControls, | 387 AriaControls, |
382 AriaDetails, | 388 AriaDetails, |
383 AriaFlowTo, | 389 AriaFlowTo, |
384 }; | 390 }; |
385 | 391 |
386 } // namespace blink | 392 } // namespace blink |
387 | 393 |
388 #endif | 394 #endif |
OLD | NEW |