| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 // What information was used to compute the object's name | 297 // What information was used to compute the object's name |
| 298 // (of type AXNameFrom). | 298 // (of type AXNameFrom). |
| 299 name_from, | 299 name_from, |
| 300 | 300 |
| 301 // What information was used to compute the object's description | 301 // What information was used to compute the object's description |
| 302 // (of type AXDescriptionFrom). | 302 // (of type AXDescriptionFrom). |
| 303 description_from, | 303 description_from, |
| 304 | 304 |
| 305 // Relationships between this element and other elements. | 305 // Relationships between this element and other elements. |
| 306 activedescendant_id, | 306 activedescendant_id, |
| 307 next_on_line_id, |
| 308 previous_on_line_id, |
| 307 | 309 |
| 308 // Identifies a child tree which this node hosts. | 310 // Identifies a child tree which this node hosts. |
| 309 child_tree_id, | 311 child_tree_id, |
| 310 | 312 |
| 311 // Position or Number of items in current set of listitems or treeitems | 313 // Position or Number of items in current set of listitems or treeitems |
| 312 set_size, | 314 set_size, |
| 313 pos_in_set, | 315 pos_in_set, |
| 314 | 316 |
| 315 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color. | 317 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color. |
| 316 color_value, | 318 color_value, |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 }; | 450 }; |
| 449 | 451 |
| 450 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { | 452 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { |
| 451 description_from_uninitialized = 0, | 453 description_from_uninitialized = 0, |
| 452 description_from_attribute, | 454 description_from_attribute, |
| 453 description_from_contents, | 455 description_from_contents, |
| 454 description_from_placeholder, | 456 description_from_placeholder, |
| 455 description_from_related_element | 457 description_from_related_element |
| 456 }; | 458 }; |
| 457 }; | 459 }; |
| OLD | NEW |