| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 splitter, | 165 splitter, |
| 166 static_text, | 166 static_text, |
| 167 status, | 167 status, |
| 168 switch, | 168 switch, |
| 169 tab_group, | 169 tab_group, |
| 170 tab_list, | 170 tab_list, |
| 171 tab_panel, | 171 tab_panel, |
| 172 tab, | 172 tab, |
| 173 table_header_container, | 173 table_header_container, |
| 174 table, | 174 table, |
| 175 text_area, | |
| 176 text_field, | 175 text_field, |
| 177 time, | 176 time, |
| 178 timer, | 177 timer, |
| 179 title_bar, | 178 title_bar, |
| 180 toggle_button, | 179 toggle_button, |
| 181 toolbar, | 180 toolbar, |
| 182 tree_grid, | 181 tree_grid, |
| 183 tree_item, | 182 tree_item, |
| 184 tree, | 183 tree, |
| 185 unknown, | 184 unknown, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 201 enabled, // content only | 200 enabled, // content only |
| 202 expanded, | 201 expanded, |
| 203 focusable, | 202 focusable, |
| 204 focused, | 203 focused, |
| 205 haspopup, | 204 haspopup, |
| 206 horizontal, | 205 horizontal, |
| 207 hovered, | 206 hovered, |
| 208 indeterminate, | 207 indeterminate, |
| 209 invisible, | 208 invisible, |
| 210 linked, | 209 linked, |
| 210 multiline, |
| 211 multiselectable, | 211 multiselectable, |
| 212 offscreen, | 212 offscreen, |
| 213 pressed, | 213 pressed, |
| 214 protected, | 214 protected, |
| 215 read_only, | 215 read_only, |
| 216 required, | 216 required, |
| 217 selectable, | 217 selectable, |
| 218 selected, | 218 selected, |
| 219 vertical, | 219 vertical, |
| 220 visited | 220 visited |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 }; | 420 }; |
| 421 | 421 |
| 422 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 422 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
| 423 sort_direction_unsorted, | 423 sort_direction_unsorted, |
| 424 sort_direction_ascending, | 424 sort_direction_ascending, |
| 425 sort_direction_descending, | 425 sort_direction_descending, |
| 426 sort_direction_other | 426 sort_direction_other |
| 427 }; | 427 }; |
| 428 | 428 |
| 429 }; | 429 }; |
| OLD | NEW |