| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 // Inline text attributes. | 307 // Inline text attributes. |
| 308 text_direction, | 308 text_direction, |
| 309 | 309 |
| 310 // Uniquely identifies an AXTree. | 310 // Uniquely identifies an AXTree. |
| 311 tree_id, | 311 tree_id, |
| 312 | 312 |
| 313 // Identifies a child tree which this node hosts. | 313 // Identifies a child tree which this node hosts. |
| 314 child_tree_id, | 314 child_tree_id, |
| 315 | 315 |
| 316 // Position or Number of items in current set of listitems or treeitems |
| 317 set_size, |
| 318 pos_in_set, |
| 319 |
| 316 // Indicates if a form control has invalid input or | 320 // Indicates if a form control has invalid input or |
| 317 // if an element has an aria-invalid attribute. | 321 // if an element has an aria-invalid attribute. |
| 318 invalid_state | 322 invalid_state |
| 319 }; | 323 }; |
| 320 | 324 |
| 321 [cpp_enum_prefix_override="ax_attr"] enum AXFloatAttribute { | 325 [cpp_enum_prefix_override="ax_attr"] enum AXFloatAttribute { |
| 322 // Document attributes. | 326 // Document attributes. |
| 323 doc_loading_progress, | 327 doc_loading_progress, |
| 324 | 328 |
| 325 // Range attributes. | 329 // Range attributes. |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 }; | 424 }; |
| 421 | 425 |
| 422 [cpp_enum_prefix_override="ax"] enum AXSortDirection { | 426 [cpp_enum_prefix_override="ax"] enum AXSortDirection { |
| 423 sort_direction_unsorted, | 427 sort_direction_unsorted, |
| 424 sort_direction_ascending, | 428 sort_direction_ascending, |
| 425 sort_direction_descending, | 429 sort_direction_descending, |
| 426 sort_direction_other | 430 sort_direction_other |
| 427 }; | 431 }; |
| 428 | 432 |
| 429 }; | 433 }; |
| OLD | NEW |