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 27 matching lines...) Expand all Loading... |
38 layout_complete, // Web | 38 layout_complete, // Web |
39 live_region_changed, // Web | 39 live_region_changed, // Web |
40 load_complete, // Web | 40 load_complete, // Web |
41 location_changed, // Web | 41 location_changed, // Web |
42 menu_end, // Native / Win | 42 menu_end, // Native / Win |
43 menu_list_item_selected, // Web | 43 menu_list_item_selected, // Web |
44 menu_list_value_changed, // Web | 44 menu_list_value_changed, // Web |
45 menu_popup_end, // Native / Win | 45 menu_popup_end, // Native / Win |
46 menu_popup_start, // Native / Win | 46 menu_popup_start, // Native / Win |
47 menu_start, // Native / Win | 47 menu_start, // Native / Win |
| 48 mouse_pressed, |
| 49 mouse_dragged, |
| 50 mouse_released, |
| 51 mouse_moved, |
| 52 mouse_entered, |
| 53 mouse_exited, |
48 row_collapsed, // Web / Mac | 54 row_collapsed, // Web / Mac |
49 row_count_changed, // Web / Mac | 55 row_count_changed, // Web / Mac |
50 row_expanded, // Web / Mac | 56 row_expanded, // Web / Mac |
51 scroll_position_changed, // Web | 57 scroll_position_changed, // Web |
52 scrolled_to_anchor, // Web | 58 scrolled_to_anchor, // Web |
53 selected_children_changed, // Web | 59 selected_children_changed, // Web |
54 selection, // Native | 60 selection, // Native |
55 selection_add, // Native | 61 selection_add, // Native |
56 selection_remove, // Native | 62 selection_remove, // Native |
57 show, // Remove: http://crbug.com/392502 | 63 show, // Remove: http://crbug.com/392502 |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 }; | 449 }; |
444 | 450 |
445 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { | 451 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { |
446 description_from_uninitialized = 0, | 452 description_from_uninitialized = 0, |
447 description_from_attribute, | 453 description_from_attribute, |
448 description_from_contents, | 454 description_from_contents, |
449 description_from_placeholder, | 455 description_from_placeholder, |
450 description_from_related_element | 456 description_from_related_element |
451 }; | 457 }; |
452 }; | 458 }; |
OLD | NEW |