| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 // Accessibility roles. | 75 // Accessibility roles. |
| 76 // These values must match blink::AccessibilityRole values. | 76 // These values must match blink::AccessibilityRole values. |
| 77 // Enforced in AssertMatchingEnums.cpp. | 77 // Enforced in AssertMatchingEnums.cpp. |
| 78 enum WebAXRole { | 78 enum WebAXRole { |
| 79 WebAXRoleUnknown = 0, | 79 WebAXRoleUnknown = 0, |
| 80 WebAXRoleAbbr, | 80 WebAXRoleAbbr, |
| 81 WebAXRoleAlertDialog, | 81 WebAXRoleAlertDialog, |
| 82 WebAXRoleAlert, | 82 WebAXRoleAlert, |
| 83 WebAXRoleAnchor, |
| 83 WebAXRoleAnnotation, | 84 WebAXRoleAnnotation, |
| 84 WebAXRoleApplication, | 85 WebAXRoleApplication, |
| 85 WebAXRoleArticle, | 86 WebAXRoleArticle, |
| 86 WebAXRoleAudio, | 87 WebAXRoleAudio, |
| 87 WebAXRoleBanner, | 88 WebAXRoleBanner, |
| 88 WebAXRoleBlockquote, | 89 WebAXRoleBlockquote, |
| 89 WebAXRoleBusyIndicator, | 90 WebAXRoleBusyIndicator, |
| 90 WebAXRoleButton, | 91 WebAXRoleButton, |
| 91 WebAXRoleCanvas, | 92 WebAXRoleCanvas, |
| 92 WebAXRoleCaption, | 93 WebAXRoleCaption, |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 // empty vector. | 380 // empty vector. |
| 380 enum class WebAXObjectVectorAttribute { | 381 enum class WebAXObjectVectorAttribute { |
| 381 AriaControls, | 382 AriaControls, |
| 382 AriaDetails, | 383 AriaDetails, |
| 383 AriaFlowTo, | 384 AriaFlowTo, |
| 384 }; | 385 }; |
| 385 | 386 |
| 386 } // namespace blink | 387 } // namespace blink |
| 387 | 388 |
| 388 #endif | 389 #endif |
| OLD | NEW |