| 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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 enum AXSortDirection { | 600 enum AXSortDirection { |
| 601 unsorted, | 601 unsorted, |
| 602 ascending, | 602 ascending, |
| 603 descending, | 603 descending, |
| 604 other | 604 other |
| 605 }; | 605 }; |
| 606 | 606 |
| 607 enum AXNameFrom { | 607 enum AXNameFrom { |
| 608 uninitialized, | 608 uninitialized, |
| 609 attribute, | 609 attribute, |
| 610 attribute_explicitly_empty, |
| 610 contents, | 611 contents, |
| 611 placeholder, | 612 placeholder, |
| 612 related_element, | 613 related_element, |
| 613 value | 614 value |
| 614 }; | 615 }; |
| 615 | 616 |
| 616 enum AXDescriptionFrom { | 617 enum AXDescriptionFrom { |
| 617 uninitialized, | 618 uninitialized, |
| 618 attribute, | 619 attribute, |
| 619 contents, | 620 contents, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 // First node is before the second one. | 662 // First node is before the second one. |
| 662 before, | 663 before, |
| 663 | 664 |
| 664 // Nodes are the same. | 665 // Nodes are the same. |
| 665 equal, | 666 equal, |
| 666 | 667 |
| 667 // First node is after the second one. | 668 // First node is after the second one. |
| 668 after | 669 after |
| 669 }; | 670 }; |
| 670 }; | 671 }; |
| OLD | NEW |