| 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 four enums, also add to | 10 // For new entries to the following four enums, also add to |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 // Relationships between this element and other elements. | 403 // Relationships between this element and other elements. |
| 404 activedescendant_id, | 404 activedescendant_id, |
| 405 errormessage_id, | 405 errormessage_id, |
| 406 member_of_id, | 406 member_of_id, |
| 407 next_on_line_id, | 407 next_on_line_id, |
| 408 previous_on_line_id, | 408 previous_on_line_id, |
| 409 | 409 |
| 410 // Identifies a child tree which this node hosts. | 410 // Identifies a child tree which this node hosts. |
| 411 child_tree_id, | 411 child_tree_id, |
| 412 | 412 |
| 413 // Position or Number of items in current set of listitems or treeitems | 413 // Number of items in a set typically of treeitems orlistitems. |
| 414 set_size, | 414 set_size, |
| 415 |
| 416 // The 1-based position of the item within the set above. |
| 415 pos_in_set, | 417 pos_in_set, |
| 416 | 418 |
| 417 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color. | 419 // In the case of AX_ROLE_COLOR_WELL, specifies the selected color. |
| 418 color_value, | 420 color_value, |
| 419 | 421 |
| 420 // Indicates the element that represents the current item within a container | 422 // Indicates the element that represents the current item within a container |
| 421 // or set of related elements. | 423 // or set of related elements. |
| 422 aria_current_state, | 424 aria_current_state, |
| 423 | 425 |
| 424 // Text attributes. | 426 // Text attributes. |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 // First node is before the second one. | 655 // First node is before the second one. |
| 654 before, | 656 before, |
| 655 | 657 |
| 656 // Nodes are the same. | 658 // Nodes are the same. |
| 657 equal, | 659 equal, |
| 658 | 660 |
| 659 // First node is after the second one. | 661 // First node is after the second one. |
| 660 after | 662 after |
| 661 }; | 663 }; |
| 662 }; | 664 }; |
| OLD | NEW |