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 enum AXEvent { | 8 enum AXEvent { |
9 activedescendantchanged, | 9 activedescendantchanged, |
10 alert, | 10 alert, |
11 aria_attribute_changed, | 11 aria_attribute_changed, |
12 autocorrection_occured, | 12 autocorrection_occured, |
13 blur, | 13 blur, |
14 checked_state_changed, | 14 checked_state_changed, |
15 children_changed, | 15 children_changed, |
16 focus, | 16 focus, |
17 hide, | 17 hide, |
| 18 hover, |
18 invalid_status_changed, | 19 invalid_status_changed, |
19 layout_complete, | 20 layout_complete, |
20 live_region_changed, | 21 live_region_changed, |
21 load_complete, | 22 load_complete, |
22 location_changed, | 23 location_changed, |
23 menu_end, | 24 menu_end, |
24 menu_list_item_selected, | 25 menu_list_item_selected, |
25 menu_list_value_changed, | 26 menu_list_value_changed, |
26 menu_popup_end, | 27 menu_popup_end, |
27 menu_popup_start, | 28 menu_popup_start, |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 word_ends | 344 word_ends |
344 }; | 345 }; |
345 | 346 |
346 [cpp_enum_prefix_override="ax"] enum AXTextDirection { | 347 [cpp_enum_prefix_override="ax"] enum AXTextDirection { |
347 text_direction_lr, | 348 text_direction_lr, |
348 text_direction_rl, | 349 text_direction_rl, |
349 text_direction_tb, | 350 text_direction_tb, |
350 text_direction_bt | 351 text_direction_bt |
351 }; | 352 }; |
352 }; | 353 }; |
OLD | NEW |