| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // Sort direction, only used for roles = WebAXRoleRowHeader and | 250 // Sort direction, only used for roles = WebAXRoleRowHeader and |
| 251 // WebAXRoleColumnHeader. | 251 // WebAXRoleColumnHeader. |
| 252 enum WebAXSortDirection { | 252 enum WebAXSortDirection { |
| 253 kWebAXSortDirectionUndefined = 0, | 253 kWebAXSortDirectionUndefined = 0, |
| 254 kWebAXSortDirectionNone, | 254 kWebAXSortDirectionNone, |
| 255 kWebAXSortDirectionAscending, | 255 kWebAXSortDirectionAscending, |
| 256 kWebAXSortDirectionDescending, | 256 kWebAXSortDirectionDescending, |
| 257 kWebAXSortDirectionOther | 257 kWebAXSortDirectionOther |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 enum WebAXCheckedState { |
| 261 WebAXCheckedFalse = 0, |
| 262 WebAXCheckedTrue, |
| 263 WebAXCheckedMixed |
| 264 }; |
| 265 |
| 260 // Expanded State. | 266 // Expanded State. |
| 261 // These values must match blink::AccessibilityExpanded values. | 267 // These values must match blink::AccessibilityExpanded values. |
| 262 // Enforced in AssertMatchingEnums.cpp. | 268 // Enforced in AssertMatchingEnums.cpp. |
| 263 enum WebAXExpanded { | 269 enum WebAXExpanded { |
| 264 kWebAXExpandedUndefined = 0, | 270 kWebAXExpandedUndefined = 0, |
| 265 kWebAXExpandedCollapsed, | 271 kWebAXExpandedCollapsed, |
| 266 kWebAXExpandedExpanded | 272 kWebAXExpandedExpanded |
| 267 }; | 273 }; |
| 268 | 274 |
| 269 // These values must match blink::AccessibilityOrientation values. | 275 // These values must match blink::AccessibilityOrientation values. |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 // empty vector. | 386 // empty vector. |
| 381 enum class WebAXObjectVectorAttribute { | 387 enum class WebAXObjectVectorAttribute { |
| 382 kAriaControls, | 388 kAriaControls, |
| 383 kAriaDetails, | 389 kAriaDetails, |
| 384 kAriaFlowTo, | 390 kAriaFlowTo, |
| 385 }; | 391 }; |
| 386 | 392 |
| 387 } // namespace blink | 393 } // namespace blink |
| 388 | 394 |
| 389 #endif | 395 #endif |
| OLD | NEW |