| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 description_list_detail, | 89 description_list_detail, |
| 90 description_list, | 90 description_list, |
| 91 description_list_term, | 91 description_list_term, |
| 92 desktop, | 92 desktop, |
| 93 details, | 93 details, |
| 94 dialog, | 94 dialog, |
| 95 directory, | 95 directory, |
| 96 disclosure_triangle, | 96 disclosure_triangle, |
| 97 div, | 97 div, |
| 98 document, | 98 document, |
| 99 editable_text, | |
| 100 embedded_object, | 99 embedded_object, |
| 101 figcaption, | 100 figcaption, |
| 102 figure, | 101 figure, |
| 103 footer, | 102 footer, |
| 104 form, | 103 form, |
| 105 grid, | 104 grid, |
| 106 group, | 105 group, |
| 107 grow_area, | |
| 108 heading, | 106 heading, |
| 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, |
| 117 link, | 115 link, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 ruler, | 151 ruler, |
| 154 svg_root, | 152 svg_root, |
| 155 scroll_area, | 153 scroll_area, |
| 156 scroll_bar, | 154 scroll_bar, |
| 157 seamless_web_area, | 155 seamless_web_area, |
| 158 search, | 156 search, |
| 159 slider, | 157 slider, |
| 160 slider_thumb, | 158 slider_thumb, |
| 161 spin_button_part, | 159 spin_button_part, |
| 162 spin_button, | 160 spin_button, |
| 163 split_group, | |
| 164 splitter, | 161 splitter, |
| 165 static_text, | 162 static_text, |
| 166 status, | 163 status, |
| 167 tab_group, | 164 tab_group, |
| 168 tab_list, | 165 tab_list, |
| 169 tab_panel, | 166 tab_panel, |
| 170 tab, | 167 tab, |
| 171 table_header_container, | 168 table_header_container, |
| 172 table, | 169 table, |
| 173 text_area, | 170 text_area, |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 word_ends | 376 word_ends |
| 380 }; | 377 }; |
| 381 | 378 |
| 382 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 379 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
| 383 text_direction_lr, | 380 text_direction_lr, |
| 384 text_direction_rl, | 381 text_direction_rl, |
| 385 text_direction_tb, | 382 text_direction_tb, |
| 386 text_direction_bt | 383 text_direction_bt |
| 387 }; | 384 }; |
| 388 }; | 385 }; |
| OLD | NEW |