| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 swipe_left_4, | 506 swipe_left_4, |
| 507 swipe_up_4, | 507 swipe_up_4, |
| 508 swipe_right_4, | 508 swipe_right_4, |
| 509 swipe_down_4 | 509 swipe_down_4 |
| 510 }; | 510 }; |
| 511 | 511 |
| 512 enum AXTextAffinity { | 512 enum AXTextAffinity { |
| 513 downstream = 0, | 513 downstream = 0, |
| 514 upstream = 1 | 514 upstream = 1 |
| 515 }; | 515 }; |
| 516 |
| 517 // Compares two nodes in an accessibility tree in pre-order traversal. |
| 518 enum AXTreeOrder { |
| 519 undefined, // Not in the same tree, or other error. |
| 520 before, // First node is before the second one. |
| 521 equal, // Nodes are the same. |
| 522 after // First node is after the second one. |
| 523 }; |
| 516 }; | 524 }; |
| OLD | NEW |