| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 [cpp_enum_prefix_override="ax_description_from"] enum AXDescriptionFrom { | 485 [cpp_enum_prefix_override="ax_description_from"] enum AXDescriptionFrom { |
| 486 uninitialized = 0, | 486 uninitialized = 0, |
| 487 attribute, | 487 attribute, |
| 488 contents, | 488 contents, |
| 489 placeholder, | 489 placeholder, |
| 490 related_element | 490 related_element |
| 491 }; | 491 }; |
| 492 | 492 |
| 493 // Touch gestures on Chrome OS. | 493 // Touch gestures on Chrome OS. |
| 494 enum AXGesture { | 494 enum AXGesture { |
| 495 double_tap, | 495 click, |
| 496 swipe_left_1, | 496 swipe_left_1, |
| 497 swipe_up_1, | 497 swipe_up_1, |
| 498 swipe_right_1, | 498 swipe_right_1, |
| 499 swipe_down_1, | 499 swipe_down_1, |
| 500 swipe_left_2, | 500 swipe_left_2, |
| 501 swipe_up_2, | 501 swipe_up_2, |
| 502 swipe_right_2, | 502 swipe_right_2, |
| 503 swipe_down_2, | 503 swipe_down_2, |
| 504 swipe_left_3, | 504 swipe_left_3, |
| 505 swipe_up_3, | 505 swipe_up_3, |
| 506 swipe_right_3, | 506 swipe_right_3, |
| 507 swipe_down_3, | 507 swipe_down_3, |
| 508 swipe_left_4, | 508 swipe_left_4, |
| 509 swipe_up_4, | 509 swipe_up_4, |
| 510 swipe_right_4, | 510 swipe_right_4, |
| 511 swipe_down_4 | 511 swipe_down_4 |
| 512 }; | 512 }; |
| 513 }; | 513 }; |
| OLD | NEW |