| 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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
| 6 // until the Chromium and Blink trees are merged. | 6 // until the Chromium and Blink trees are merged. |
| 7 [camel_case_enum_to_string=true] namespace ui { | 7 [camel_case_enum_to_string=true] namespace ui { |
| 8 | 8 |
| 9 // For new entries to the following three enums, also add to | 9 // For new entries to the following three enums, also add to |
| 10 // chrome/common/extensions/api/automation.idl. | 10 // chrome/common/extensions/api/automation.idl. |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 tree_grid, | 188 tree_grid, |
| 189 tree_item, | 189 tree_item, |
| 190 tree, | 190 tree, |
| 191 unknown, | 191 unknown, |
| 192 tooltip, | 192 tooltip, |
| 193 web_area, | 193 web_area, |
| 194 web_view, | 194 web_view, |
| 195 window | 195 window |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 // TODO(dmazzoni): switch content/ to use AX_STATE_DISABLED instead of | |
| 199 // !AX_STATE_ENABLED. | |
| 200 enum AXState { | 198 enum AXState { |
| 201 busy, | 199 busy, |
| 202 checked, | 200 checked, |
| 203 collapsed, | 201 collapsed, |
| 204 default, | 202 default, |
| 205 disabled, // ui/views only | 203 disabled, |
| 206 editable, | 204 editable, |
| 207 enabled, // content only | |
| 208 expanded, | 205 expanded, |
| 209 focusable, | 206 focusable, |
| 210 haspopup, | 207 haspopup, |
| 211 horizontal, | 208 horizontal, |
| 212 hovered, | 209 hovered, |
| 213 invisible, | 210 invisible, |
| 214 linked, | 211 linked, |
| 215 multiline, | 212 multiline, |
| 216 multiselectable, | 213 multiselectable, |
| 217 offscreen, | 214 offscreen, |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 swipe_left_3, | 502 swipe_left_3, |
| 506 swipe_up_3, | 503 swipe_up_3, |
| 507 swipe_right_3, | 504 swipe_right_3, |
| 508 swipe_down_3, | 505 swipe_down_3, |
| 509 swipe_left_4, | 506 swipe_left_4, |
| 510 swipe_up_4, | 507 swipe_up_4, |
| 511 swipe_right_4, | 508 swipe_right_4, |
| 512 swipe_down_4 | 509 swipe_down_4 |
| 513 }; | 510 }; |
| 514 }; | 511 }; |
| OLD | NEW |