| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 tree_changed, // Accessibility tree changed. Don't | 73 tree_changed, // Accessibility tree changed. Don't |
| 74 // explicitly fire an accessibility event, | 74 // explicitly fire an accessibility event, |
| 75 // only implicitly due to the change. | 75 // only implicitly due to the change. |
| 76 value_changed | 76 value_changed |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 enum AXRole { | 79 enum AXRole { |
| 80 abbr, | 80 abbr, |
| 81 alert_dialog, | 81 alert_dialog, |
| 82 alert, | 82 alert, |
| 83 anchor, |
| 83 annotation, | 84 annotation, |
| 84 application, | 85 application, |
| 85 article, | 86 article, |
| 86 audio, | 87 audio, |
| 87 banner, | 88 banner, |
| 88 blockquote, | 89 blockquote, |
| 89 // TODO(nektar): Remove busy_indicator because it's used nowhere. | 90 // TODO(nektar): Remove busy_indicator because it's used nowhere. |
| 90 busy_indicator, | 91 busy_indicator, |
| 91 button, | 92 button, |
| 92 button_drop_down, // Not used on Web. | 93 button_drop_down, // Not used on Web. |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 // First node is before the second one. | 657 // First node is before the second one. |
| 657 before, | 658 before, |
| 658 | 659 |
| 659 // Nodes are the same. | 660 // Nodes are the same. |
| 660 equal, | 661 equal, |
| 661 | 662 |
| 662 // First node is after the second one. | 663 // First node is after the second one. |
| 663 after | 664 after |
| 664 }; | 665 }; |
| 665 }; | 666 }; |
| OLD | NEW |