| 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 WebAXRoleDescriptionListTerm, | 97 WebAXRoleDescriptionListTerm, |
| 96 WebAXRoleDetails, | 98 WebAXRoleDetails, |
| 97 WebAXRoleDialog, | 99 WebAXRoleDialog, |
| 98 WebAXRoleDirectory, | 100 WebAXRoleDirectory, |
| 99 WebAXRoleDisclosureTriangle, | 101 WebAXRoleDisclosureTriangle, |
| 100 WebAXRoleDiv, | 102 WebAXRoleDiv, |
| 101 WebAXRoleDocument, | 103 WebAXRoleDocument, |
| 102 WebAXRoleDrawer, | 104 WebAXRoleDrawer, |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 WebAXRoleStatus, | 173 WebAXRoleStatus, |
| 172 WebAXRoleSystemWide, | 174 WebAXRoleSystemWide, |
| 173 WebAXRoleTabGroup, | 175 WebAXRoleTabGroup, |
| 174 WebAXRoleTabList, | 176 WebAXRoleTabList, |
| 175 WebAXRoleTabPanel, | 177 WebAXRoleTabPanel, |
| 176 WebAXRoleTab, | 178 WebAXRoleTab, |
| 177 WebAXRoleTableHeaderContainer, | 179 WebAXRoleTableHeaderContainer, |
| 178 WebAXRoleTable, | 180 WebAXRoleTable, |
| 179 WebAXRoleTextArea, | 181 WebAXRoleTextArea, |
| 180 WebAXRoleTextField, | 182 WebAXRoleTextField, |
| 183 WebAXRoleTime, |
| 181 WebAXRoleTimer, | 184 WebAXRoleTimer, |
| 182 WebAXRoleToggleButton, | 185 WebAXRoleToggleButton, |
| 183 WebAXRoleToolbar, | 186 WebAXRoleToolbar, |
| 184 WebAXRoleTreeGrid, | 187 WebAXRoleTreeGrid, |
| 185 WebAXRoleTreeItem, | 188 WebAXRoleTreeItem, |
| 186 WebAXRoleTree, | 189 WebAXRoleTree, |
| 187 WebAXRoleUnknown, | 190 WebAXRoleUnknown, |
| 188 WebAXRoleUserInterfaceTooltip, | 191 WebAXRoleUserInterfaceTooltip, |
| 189 WebAXRoleValueIndicator, | 192 WebAXRoleValueIndicator, |
| 190 WebAXRoleWebArea, | 193 WebAXRoleWebArea, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 221 enum WebAXTextDirection { | 224 enum WebAXTextDirection { |
| 222 WebAXTextDirectionLR, | 225 WebAXTextDirectionLR, |
| 223 WebAXTextDirectionRL, | 226 WebAXTextDirectionRL, |
| 224 WebAXTextDirectionTB, | 227 WebAXTextDirectionTB, |
| 225 WebAXTextDirectionBT | 228 WebAXTextDirectionBT |
| 226 }; | 229 }; |
| 227 | 230 |
| 228 } // namespace blink | 231 } // namespace blink |
| 229 | 232 |
| 230 #endif | 233 #endif |
| OLD | NEW |