Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2493923002: Select-to-speak event handler (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 live_region_created, // Implicit 43 live_region_created, // Implicit
44 live_region_changed, // Web 44 live_region_changed, // Web
45 load_complete, // Web 45 load_complete, // Web
46 location_changed, // Web 46 location_changed, // Web
47 menu_end, // Native / Win 47 menu_end, // Native / Win
48 menu_list_item_selected, // Web 48 menu_list_item_selected, // Web
49 menu_list_value_changed, // Web 49 menu_list_value_changed, // Web
50 menu_popup_end, // Native / Win 50 menu_popup_end, // Native / Win
51 menu_popup_start, // Native / Win 51 menu_popup_start, // Native / Win
52 menu_start, // Native / Win 52 menu_start, // Native / Win
53 mouse_canceled,
54 mouse_dragged,
55 mouse_moved,
56 mouse_pressed,
57 mouse_released,
53 row_collapsed, // Web / Mac 58 row_collapsed, // Web / Mac
54 row_count_changed, // Web / Mac 59 row_count_changed, // Web / Mac
55 row_expanded, // Web / Mac 60 row_expanded, // Web / Mac
56 scroll_position_changed, // Web 61 scroll_position_changed, // Web
57 scrolled_to_anchor, // Web 62 scrolled_to_anchor, // Web
58 selected_children_changed, // Web 63 selected_children_changed, // Web
59 selection, // Native 64 selection, // Native
60 selection_add, // Native 65 selection_add, // Native
61 selection_remove, // Native 66 selection_remove, // Native
62 show, // Remove: http://crbug.com/392502 67 show, // Remove: http://crbug.com/392502
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 // First node is before the second one. 605 // First node is before the second one.
601 before, 606 before,
602 607
603 // Nodes are the same. 608 // Nodes are the same.
604 equal, 609 equal,
605 610
606 // First node is after the second one. 611 // First node is after the second one.
607 after 612 after
608 }; 613 };
609 }; 614 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698