| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 description_list, | 88 description_list, |
| 89 description_list_term, | 89 description_list_term, |
| 90 desktop, | 90 desktop, |
| 91 details, | 91 details, |
| 92 dialog, | 92 dialog, |
| 93 directory, | 93 directory, |
| 94 disclosure_triangle, | 94 disclosure_triangle, |
| 95 div, | 95 div, |
| 96 document, | 96 document, |
| 97 drawer, | 97 drawer, |
| 98 editable_text, | |
| 99 embedded_object, | 98 embedded_object, |
| 100 figcaption, | 99 figcaption, |
| 101 figure, | 100 figure, |
| 102 footer, | 101 footer, |
| 103 form, | 102 form, |
| 104 grid, | 103 grid, |
| 105 group, | 104 group, |
| 106 grow_area, | |
| 107 heading, | 105 heading, |
| 108 help_tag, | 106 help_tag, |
| 109 iframe, | 107 iframe, |
| 110 ignored, | 108 ignored, |
| 111 image_map_link, | 109 image_map_link, |
| 112 image_map, | 110 image_map, |
| 113 image, | 111 image, |
| 114 inline_text_box, | 112 inline_text_box, |
| 115 label_text, | 113 label_text, |
| 116 legend, | 114 legend, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 svg_root, | 154 svg_root, |
| 157 scroll_area, | 155 scroll_area, |
| 158 scroll_bar, | 156 scroll_bar, |
| 159 seamless_web_area, | 157 seamless_web_area, |
| 160 search, | 158 search, |
| 161 sheet, | 159 sheet, |
| 162 slider, | 160 slider, |
| 163 slider_thumb, | 161 slider_thumb, |
| 164 spin_button_part, | 162 spin_button_part, |
| 165 spin_button, | 163 spin_button, |
| 166 split_group, | |
| 167 splitter, | 164 splitter, |
| 168 static_text, | 165 static_text, |
| 169 status, | 166 status, |
| 170 system_wide, | 167 system_wide, |
| 171 tab_group, | 168 tab_group, |
| 172 tab_list, | 169 tab_list, |
| 173 tab_panel, | 170 tab_panel, |
| 174 tab, | 171 tab, |
| 175 table_header_container, | 172 table_header_container, |
| 176 table, | 173 table, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 word_ends | 381 word_ends |
| 385 }; | 382 }; |
| 386 | 383 |
| 387 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 384 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
| 388 text_direction_lr, | 385 text_direction_lr, |
| 389 text_direction_rl, | 386 text_direction_rl, |
| 390 text_direction_tb, | 387 text_direction_tb, |
| 391 text_direction_bt | 388 text_direction_bt |
| 392 }; | 389 }; |
| 393 }; | 390 }; |
| OLD | NEW |