| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // TODO(nektar): Migrate entire file to Mojoq. | 5 // TODO(nektar): Migrate entire file to Mojoq. |
| 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
| 7 // until the Chromium and Blink trees are merged. | 7 // until the Chromium and Blink trees are merged. |
| 8 [camel_case_enum_to_string=true] namespace ui { | 8 [camel_case_enum_to_string=true] namespace ui { |
| 9 | 9 |
| 10 // For new entries to the following three enums, also add to | 10 // For new entries to the following three enums, also add to |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 enum AXState { | 203 enum AXState { |
| 204 busy, | 204 busy, |
| 205 checked, | 205 checked, |
| 206 collapsed, | 206 collapsed, |
| 207 default, | 207 default, |
| 208 disabled, | 208 disabled, |
| 209 editable, | 209 editable, |
| 210 expanded, | 210 expanded, |
| 211 focusable, | 211 focusable, |
| 212 haspopup, | 212 haspopup, |
| 213 // Grows horizontally, e.g. most toolbars and separators. |
| 213 horizontal, | 214 horizontal, |
| 214 hovered, | 215 hovered, |
| 215 invisible, | 216 invisible, |
| 216 linked, | 217 linked, |
| 217 multiline, | 218 multiline, |
| 218 multiselectable, | 219 multiselectable, |
| 219 offscreen, | 220 offscreen, |
| 220 pressed, | 221 pressed, |
| 221 protected, | 222 protected, |
| 222 read_only, | 223 read_only, |
| 223 required, | 224 required, |
| 224 richly_editable, | 225 richly_editable, |
| 225 selectable, | 226 selectable, |
| 226 selected, | 227 selected, |
| 228 // Grows vertically, e.g. menu or combo box. |
| 227 vertical, | 229 vertical, |
| 228 visited | 230 visited |
| 229 }; | 231 }; |
| 230 | 232 |
| 231 // A change to the accessibility tree. | 233 // A change to the accessibility tree. |
| 232 enum AXMutation { | 234 enum AXMutation { |
| 233 node_created, | 235 node_created, |
| 234 subtree_created, | 236 subtree_created, |
| 235 node_changed, | 237 node_changed, |
| 236 node_removed | 238 node_removed |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 // First node is before the second one. | 550 // First node is before the second one. |
| 549 before, | 551 before, |
| 550 | 552 |
| 551 // Nodes are the same. | 553 // Nodes are the same. |
| 552 equal, | 554 equal, |
| 553 | 555 |
| 554 // First node is after the second one. | 556 // First node is after the second one. |
| 555 after | 557 after |
| 556 }; | 558 }; |
| 557 }; | 559 }; |
| OLD | NEW |