| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 date_time, | 107 date_time, |
| 108 definition, | 108 definition, |
| 109 description_list_detail, | 109 description_list_detail, |
| 110 description_list, | 110 description_list, |
| 111 description_list_term, | 111 description_list_term, |
| 112 desktop, | 112 desktop, |
| 113 details, | 113 details, |
| 114 dialog, | 114 dialog, |
| 115 directory, | 115 directory, |
| 116 disclosure_triangle, | 116 disclosure_triangle, |
| 117 div, | |
| 118 document, | 117 document, |
| 119 embedded_object, | 118 embedded_object, |
| 120 feed, | 119 feed, |
| 121 figcaption, | 120 figcaption, |
| 122 figure, | 121 figure, |
| 123 footer, | 122 footer, |
| 124 form, | 123 form, |
| 124 generic_container, |
| 125 grid, | 125 grid, |
| 126 group, | 126 group, |
| 127 heading, | 127 heading, |
| 128 iframe, | 128 iframe, |
| 129 iframe_presentational, | 129 iframe_presentational, |
| 130 ignored, | 130 ignored, |
| 131 image_map_link, | 131 image_map_link, |
| 132 image_map, | 132 image_map, |
| 133 image, | 133 image, |
| 134 inline_text_box, | 134 inline_text_box, |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 // First node is before the second one. | 663 // First node is before the second one. |
| 664 before, | 664 before, |
| 665 | 665 |
| 666 // Nodes are the same. | 666 // Nodes are the same. |
| 667 equal, | 667 equal, |
| 668 | 668 |
| 669 // First node is after the second one. | 669 // First node is after the second one. |
| 670 after | 670 after |
| 671 }; | 671 }; |
| 672 }; | 672 }; |
| OLD | NEW |