| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 272 |
| 273 // Table column attributes. | 273 // Table column attributes. |
| 274 table_column_index, | 274 table_column_index, |
| 275 table_column_header_id, | 275 table_column_header_id, |
| 276 | 276 |
| 277 // Table cell attributes. | 277 // Table cell attributes. |
| 278 table_cell_column_index, | 278 table_cell_column_index, |
| 279 table_cell_column_span, | 279 table_cell_column_span, |
| 280 table_cell_row_index, | 280 table_cell_row_index, |
| 281 table_cell_row_span, | 281 table_cell_row_span, |
| 282 sort_direction, |
| 282 | 283 |
| 283 // Tree control attributes. | 284 // Tree control attributes. |
| 284 hierarchical_level, | 285 hierarchical_level, |
| 285 | 286 |
| 286 // Relationships between this element and other elements. | 287 // Relationships between this element and other elements. |
| 287 title_ui_element, | 288 title_ui_element, |
| 288 activedescendant_id, | 289 activedescendant_id, |
| 289 | 290 |
| 290 // Color value for AX_ROLE_COLOR_WELL, each component is 0..255 | 291 // Color value for AX_ROLE_COLOR_WELL, each component is 0..255 |
| 291 color_value_red, | 292 color_value_red, |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 }; | 401 }; |
| 401 | 402 |
| 402 [cpp_enum_prefix_override="ax"] enum AXInvalidState { | 403 [cpp_enum_prefix_override="ax"] enum AXInvalidState { |
| 403 invalid_state_false, | 404 invalid_state_false, |
| 404 invalid_state_true, | 405 invalid_state_true, |
| 405 invalid_state_spelling, | 406 invalid_state_spelling, |
| 406 invalid_state_grammar, | 407 invalid_state_grammar, |
| 407 invalid_state_other | 408 invalid_state_other |
| 408 }; | 409 }; |
| 409 | 410 |
| 411 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
| 412 sort_direction_unsorted, |
| 413 sort_direction_ascending, |
| 414 sort_direction_descending, |
| 415 sort_direction_other |
| 416 }; |
| 417 |
| 410 }; | 418 }; |
| OLD | NEW |