| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 WebAXRoleDescriptionListDetail, | 104 WebAXRoleDescriptionListDetail, |
| 105 WebAXRoleDescriptionList, | 105 WebAXRoleDescriptionList, |
| 106 WebAXRoleDescriptionListTerm, | 106 WebAXRoleDescriptionListTerm, |
| 107 WebAXRoleDetails, | 107 WebAXRoleDetails, |
| 108 WebAXRoleDialog, | 108 WebAXRoleDialog, |
| 109 WebAXRoleDirectory, | 109 WebAXRoleDirectory, |
| 110 WebAXRoleDisclosureTriangle, | 110 WebAXRoleDisclosureTriangle, |
| 111 WebAXRoleDiv, | 111 WebAXRoleDiv, |
| 112 WebAXRoleDocument, | 112 WebAXRoleDocument, |
| 113 WebAXRoleEmbeddedObject, | 113 WebAXRoleEmbeddedObject, |
| 114 WebAXRoleFeed, |
| 114 WebAXRoleFigcaption, | 115 WebAXRoleFigcaption, |
| 115 WebAXRoleFigure, | 116 WebAXRoleFigure, |
| 116 WebAXRoleFooter, | 117 WebAXRoleFooter, |
| 117 WebAXRoleForm, | 118 WebAXRoleForm, |
| 118 WebAXRoleGrid, | 119 WebAXRoleGrid, |
| 119 WebAXRoleGroup, | 120 WebAXRoleGroup, |
| 120 WebAXRoleHeading, | 121 WebAXRoleHeading, |
| 121 WebAXRoleIframePresentational, | 122 WebAXRoleIframePresentational, |
| 122 WebAXRoleIframe, | 123 WebAXRoleIframe, |
| 123 WebAXRoleIgnored, | 124 WebAXRoleIgnored, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 WebAXRoleSplitter, | 180 WebAXRoleSplitter, |
| 180 WebAXRoleStaticText, | 181 WebAXRoleStaticText, |
| 181 WebAXRoleStatus, | 182 WebAXRoleStatus, |
| 182 WebAXRoleSwitch, | 183 WebAXRoleSwitch, |
| 183 WebAXRoleTabGroup, | 184 WebAXRoleTabGroup, |
| 184 WebAXRoleTabList, | 185 WebAXRoleTabList, |
| 185 WebAXRoleTabPanel, | 186 WebAXRoleTabPanel, |
| 186 WebAXRoleTab, | 187 WebAXRoleTab, |
| 187 WebAXRoleTableHeaderContainer, | 188 WebAXRoleTableHeaderContainer, |
| 188 WebAXRoleTable, | 189 WebAXRoleTable, |
| 190 WebAXRoleTerm, |
| 189 WebAXRoleTextField, | 191 WebAXRoleTextField, |
| 190 WebAXRoleTime, | 192 WebAXRoleTime, |
| 191 WebAXRoleTimer, | 193 WebAXRoleTimer, |
| 192 WebAXRoleToggleButton, | 194 WebAXRoleToggleButton, |
| 193 WebAXRoleToolbar, | 195 WebAXRoleToolbar, |
| 194 WebAXRoleTreeGrid, | 196 WebAXRoleTreeGrid, |
| 195 WebAXRoleTreeItem, | 197 WebAXRoleTreeItem, |
| 196 WebAXRoleTree, | 198 WebAXRoleTree, |
| 197 WebAXRoleUserInterfaceTooltip, | 199 WebAXRoleUserInterfaceTooltip, |
| 198 WebAXRoleVideo, | 200 WebAXRoleVideo, |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 | 336 |
| 335 // Text affinity for the start or end of a selection. | 337 // Text affinity for the start or end of a selection. |
| 336 enum WebAXTextAffinity { | 338 enum WebAXTextAffinity { |
| 337 WebAXTextAffinityUpstream, | 339 WebAXTextAffinityUpstream, |
| 338 WebAXTextAffinityDownstream | 340 WebAXTextAffinityDownstream |
| 339 }; | 341 }; |
| 340 | 342 |
| 341 } // namespace blink | 343 } // namespace blink |
| 342 | 344 |
| 343 #endif | 345 #endif |
| OLD | NEW |