| 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 four enums, also add to | 10 // For new entries to the following four enums, also add to |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 focus, | 38 focus, |
| 39 hide, // Remove: http://crbug.com/392502 | 39 hide, // Remove: http://crbug.com/392502 |
| 40 hover, | 40 hover, |
| 41 image_frame_updated, // Web | 41 image_frame_updated, // Web |
| 42 invalid_status_changed, // Implicit | 42 invalid_status_changed, // Implicit |
| 43 layout_complete, // Web | 43 layout_complete, // Web |
| 44 live_region_created, // Implicit | 44 live_region_created, // Implicit |
| 45 live_region_changed, // Web | 45 live_region_changed, // Web |
| 46 load_complete, // Web | 46 load_complete, // Web |
| 47 location_changed, // Web | 47 location_changed, // Web |
| 48 media_started_playing, // Automation |
| 49 media_stopped_playing, // Automation |
| 48 menu_end, // Native / Win | 50 menu_end, // Native / Win |
| 49 menu_list_item_selected, // Web | 51 menu_list_item_selected, // Web |
| 50 menu_list_value_changed, // Web | 52 menu_list_value_changed, // Web |
| 51 menu_popup_end, // Native / Win | 53 menu_popup_end, // Native / Win |
| 52 menu_popup_start, // Native / Win | 54 menu_popup_start, // Native / Win |
| 53 menu_start, // Native / Win | 55 menu_start, // Native / Win |
| 54 mouse_canceled, | 56 mouse_canceled, |
| 55 mouse_dragged, | 57 mouse_dragged, |
| 56 mouse_moved, | 58 mouse_moved, |
| 57 mouse_pressed, | 59 mouse_pressed, |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 // First node is before the second one. | 620 // First node is before the second one. |
| 619 before, | 621 before, |
| 620 | 622 |
| 621 // Nodes are the same. | 623 // Nodes are the same. |
| 622 equal, | 624 equal, |
| 623 | 625 |
| 624 // First node is after the second one. | 626 // First node is after the second one. |
| 625 after | 627 after |
| 626 }; | 628 }; |
| 627 }; | 629 }; |
| OLD | NEW |