| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 WebAXRoleCanvas, | 83 WebAXRoleCanvas, |
| 84 WebAXRoleCell, | 84 WebAXRoleCell, |
| 85 WebAXRoleCheckBoxMenuItem, | 85 WebAXRoleCheckBoxMenuItem, |
| 86 WebAXRoleCheckBox, | 86 WebAXRoleCheckBox, |
| 87 WebAXRoleColorWell, | 87 WebAXRoleColorWell, |
| 88 WebAXRoleColumnHeader, | 88 WebAXRoleColumnHeader, |
| 89 WebAXRoleColumn, | 89 WebAXRoleColumn, |
| 90 WebAXRoleComboBox, | 90 WebAXRoleComboBox, |
| 91 WebAXRoleComplementary, | 91 WebAXRoleComplementary, |
| 92 WebAXRoleContentInfo, | 92 WebAXRoleContentInfo, |
| 93 WebAXRoleDate, |
| 94 WebAXRoleDateTime, |
| 93 WebAXRoleDefinition, | 95 WebAXRoleDefinition, |
| 94 WebAXRoleDescriptionListDetail, | 96 WebAXRoleDescriptionListDetail, |
| 95 WebAXRoleDescriptionList, | 97 WebAXRoleDescriptionList, |
| 96 WebAXRoleDescriptionListTerm, | 98 WebAXRoleDescriptionListTerm, |
| 97 WebAXRoleDetails, | 99 WebAXRoleDetails, |
| 98 WebAXRoleDialog, | 100 WebAXRoleDialog, |
| 99 WebAXRoleDirectory, | 101 WebAXRoleDirectory, |
| 100 WebAXRoleDisclosureTriangle, | 102 WebAXRoleDisclosureTriangle, |
| 101 WebAXRoleDiv, | 103 WebAXRoleDiv, |
| 102 WebAXRoleDocument, | 104 WebAXRoleDocument, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 WebAXRoleStatus, | 174 WebAXRoleStatus, |
| 173 WebAXRoleSystemWide, | 175 WebAXRoleSystemWide, |
| 174 WebAXRoleTabGroup, | 176 WebAXRoleTabGroup, |
| 175 WebAXRoleTabList, | 177 WebAXRoleTabList, |
| 176 WebAXRoleTabPanel, | 178 WebAXRoleTabPanel, |
| 177 WebAXRoleTab, | 179 WebAXRoleTab, |
| 178 WebAXRoleTableHeaderContainer, | 180 WebAXRoleTableHeaderContainer, |
| 179 WebAXRoleTable, | 181 WebAXRoleTable, |
| 180 WebAXRoleTextArea, | 182 WebAXRoleTextArea, |
| 181 WebAXRoleTextField, | 183 WebAXRoleTextField, |
| 184 WebAXRoleTime, |
| 182 WebAXRoleTimer, | 185 WebAXRoleTimer, |
| 183 WebAXRoleToggleButton, | 186 WebAXRoleToggleButton, |
| 184 WebAXRoleToolbar, | 187 WebAXRoleToolbar, |
| 185 WebAXRoleTreeGrid, | 188 WebAXRoleTreeGrid, |
| 186 WebAXRoleTreeItem, | 189 WebAXRoleTreeItem, |
| 187 WebAXRoleTree, | 190 WebAXRoleTree, |
| 188 WebAXRoleUnknown, | 191 WebAXRoleUnknown, |
| 189 WebAXRoleUserInterfaceTooltip, | 192 WebAXRoleUserInterfaceTooltip, |
| 190 WebAXRoleValueIndicator, | 193 WebAXRoleValueIndicator, |
| 191 WebAXRoleWebArea, | 194 WebAXRoleWebArea, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 222 enum WebAXTextDirection { | 225 enum WebAXTextDirection { |
| 223 WebAXTextDirectionLR, | 226 WebAXTextDirectionLR, |
| 224 WebAXTextDirectionRL, | 227 WebAXTextDirectionRL, |
| 225 WebAXTextDirectionTB, | 228 WebAXTextDirectionTB, |
| 226 WebAXTextDirectionBT | 229 WebAXTextDirectionBT |
| 227 }; | 230 }; |
| 228 | 231 |
| 229 } // namespace blink | 232 } // namespace blink |
| 230 | 233 |
| 231 #endif | 234 #endif |
| OLD | NEW |