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