| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 root_web_area, | 150 root_web_area, |
| 151 row_header, | 151 row_header, |
| 152 row, | 152 row, |
| 153 ruby, | 153 ruby, |
| 154 ruler, | 154 ruler, |
| 155 svg_root, | 155 svg_root, |
| 156 scroll_area, | 156 scroll_area, |
| 157 scroll_bar, | 157 scroll_bar, |
| 158 seamless_web_area, | 158 seamless_web_area, |
| 159 search, | 159 search, |
| 160 search_box, |
| 160 slider, | 161 slider, |
| 161 slider_thumb, | 162 slider_thumb, |
| 162 spin_button_part, | 163 spin_button_part, |
| 163 spin_button, | 164 spin_button, |
| 164 splitter, | 165 splitter, |
| 165 static_text, | 166 static_text, |
| 166 status, | 167 status, |
| 168 switch, |
| 167 tab_group, | 169 tab_group, |
| 168 tab_list, | 170 tab_list, |
| 169 tab_panel, | 171 tab_panel, |
| 170 tab, | 172 tab, |
| 171 table_header_container, | 173 table_header_container, |
| 172 table, | 174 table, |
| 173 text_area, | 175 text_area, |
| 174 text_field, | 176 text_field, |
| 175 time, | 177 time, |
| 176 timer, | 178 timer, |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 }; | 412 }; |
| 411 | 413 |
| 412 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 414 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
| 413 sort_direction_unsorted, | 415 sort_direction_unsorted, |
| 414 sort_direction_ascending, | 416 sort_direction_ascending, |
| 415 sort_direction_descending, | 417 sort_direction_descending, |
| 416 sort_direction_other | 418 sort_direction_other |
| 417 }; | 419 }; |
| 418 | 420 |
| 419 }; | 421 }; |
| OLD | NEW |