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 // TODO(nektar): Migrate entire file to Mojoq. | 5 // TODO(nektar): Migrate entire file to Mojoq. |
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h | 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h |
7 // until the Chromium and Blink trees are merged. | 7 // until the Chromium and Blink trees are merged. |
8 [camel_case_enum_to_string=true] namespace ui { | 8 [camel_case_enum_to_string=true] namespace ui { |
9 | 9 |
10 // For new entries to the following three enums, also add to | 10 // For new entries to the following three enums, also add to |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 }; | 497 }; |
498 | 498 |
499 enum AXDescriptionFrom { | 499 enum AXDescriptionFrom { |
500 uninitialized, | 500 uninitialized, |
501 attribute, | 501 attribute, |
502 contents, | 502 contents, |
503 placeholder, | 503 placeholder, |
504 related_element | 504 related_element |
505 }; | 505 }; |
506 | 506 |
| 507 enum AXEventFrom { |
| 508 user, |
| 509 page, |
| 510 action |
| 511 }; |
| 512 |
507 // Touch gestures on Chrome OS. | 513 // Touch gestures on Chrome OS. |
508 enum AXGesture { | 514 enum AXGesture { |
509 click, | 515 click, |
510 swipe_left_1, | 516 swipe_left_1, |
511 swipe_up_1, | 517 swipe_up_1, |
512 swipe_right_1, | 518 swipe_right_1, |
513 swipe_down_1, | 519 swipe_down_1, |
514 swipe_left_2, | 520 swipe_left_2, |
515 swipe_up_2, | 521 swipe_up_2, |
516 swipe_right_2, | 522 swipe_right_2, |
(...skipping 21 matching lines...) Expand all Loading... |
538 // First node is before the second one. | 544 // First node is before the second one. |
539 before, | 545 before, |
540 | 546 |
541 // Nodes are the same. | 547 // Nodes are the same. |
542 equal, | 548 equal, |
543 | 549 |
544 // First node is after the second one. | 550 // First node is after the second one. |
545 after | 551 after |
546 }; | 552 }; |
547 }; | 553 }; |
OLD | NEW |