Chromium Code Reviews| 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 horizontal, | 213 horizontal, // Grows horizontally, e.g. most toolbars and separators. |
|
dmazzoni
2016/10/14 19:37:20
The code generator doesn't work with comments at t
| |
| 214 hovered, | 214 hovered, |
| 215 invisible, | 215 invisible, |
| 216 linked, | 216 linked, |
| 217 multiline, | 217 multiline, |
| 218 multiselectable, | 218 multiselectable, |
| 219 offscreen, | 219 offscreen, |
| 220 pressed, | 220 pressed, |
| 221 protected, | 221 protected, |
| 222 read_only, | 222 read_only, |
| 223 required, | 223 required, |
| 224 richly_editable, | 224 richly_editable, |
| 225 selectable, | 225 selectable, |
| 226 selected, | 226 selected, |
| 227 vertical, | 227 vertical, // Grows vertically, e.g. menu or combo box. |
| 228 visited | 228 visited |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 // A change to the accessibility tree. | 231 // A change to the accessibility tree. |
| 232 enum AXMutation { | 232 enum AXMutation { |
| 233 node_created, | 233 node_created, |
| 234 subtree_created, | 234 subtree_created, |
| 235 node_changed, | 235 node_changed, |
| 236 node_removed | 236 node_removed |
| 237 }; | 237 }; |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 548 // First node is before the second one. | 548 // First node is before the second one. |
| 549 before, | 549 before, |
| 550 | 550 |
| 551 // Nodes are the same. | 551 // Nodes are the same. |
| 552 equal, | 552 equal, |
| 553 | 553 |
| 554 // First node is after the second one. | 554 // First node is after the second one. |
| 555 after | 555 after |
| 556 }; | 556 }; |
| 557 }; | 557 }; |
| OLD | NEW |