| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 // Do the default action for an object, typically this means "click". | 252 // Do the default action for an object, typically this means "click". |
| 253 do_default, | 253 do_default, |
| 254 | 254 |
| 255 focus, | 255 focus, |
| 256 | 256 |
| 257 // Return the content of this image object in the image_data attribute. | 257 // Return the content of this image object in the image_data attribute. |
| 258 get_image_data, | 258 get_image_data, |
| 259 | 259 |
| 260 // Given a point, find the object it corresponds to and fire a | 260 // Given a point, find the object it corresponds to and fire a |
| 261 // HOVER event on it in response. | 261 // |AXActionData.hit_test_event_to_fire| event on it in response. |
| 262 hit_test, | 262 hit_test, |
| 263 | 263 |
| 264 // Increment a slider or range control by one step value. | 264 // Increment a slider or range control by one step value. |
| 265 increment, | 265 increment, |
| 266 | 266 |
| 267 // Delete any selected text in the control's text value and | 267 // Delete any selected text in the control's text value and |
| 268 // insert |AXActionData::value| in its place, like when typing or pasting. | 268 // insert |AXActionData::value| in its place, like when typing or pasting. |
| 269 replace_selected_text, | 269 replace_selected_text, |
| 270 | 270 |
| 271 // Scroll any scrollable containers to make the target object visible | 271 // Scroll any scrollable containers to make the target object visible |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 // First node is before the second one. | 656 // First node is before the second one. |
| 657 before, | 657 before, |
| 658 | 658 |
| 659 // Nodes are the same. | 659 // Nodes are the same. |
| 660 equal, | 660 equal, |
| 661 | 661 |
| 662 // First node is after the second one. | 662 // First node is after the second one. |
| 663 after | 663 after |
| 664 }; | 664 }; |
| 665 }; | 665 }; |
| OLD | NEW |