| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 enum AXState { | 198 enum AXState { |
| 199 busy, | 199 busy, |
| 200 checked, | 200 checked, |
| 201 collapsed, | 201 collapsed, |
| 202 default, | 202 default, |
| 203 disabled, // ui/views only | 203 disabled, // ui/views only |
| 204 editable, | 204 editable, |
| 205 enabled, // content only | 205 enabled, // content only |
| 206 expanded, | 206 expanded, |
| 207 focusable, | 207 focusable, |
| 208 focused, | |
| 209 haspopup, | 208 haspopup, |
| 210 horizontal, | 209 horizontal, |
| 211 hovered, | 210 hovered, |
| 212 invisible, | 211 invisible, |
| 213 linked, | 212 linked, |
| 214 multiline, | 213 multiline, |
| 215 multiselectable, | 214 multiselectable, |
| 216 offscreen, | 215 offscreen, |
| 217 pressed, | 216 pressed, |
| 218 protected, | 217 protected, |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 }; | 443 }; |
| 445 | 444 |
| 446 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { | 445 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { |
| 447 description_from_uninitialized = 0, | 446 description_from_uninitialized = 0, |
| 448 description_from_attribute, | 447 description_from_attribute, |
| 449 description_from_contents, | 448 description_from_contents, |
| 450 description_from_placeholder, | 449 description_from_placeholder, |
| 451 description_from_related_element | 450 description_from_related_element |
| 452 }; | 451 }; |
| 453 }; | 452 }; |
| OLD | NEW |