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

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

Issue 2748463003: Generalize the HIT_TEST accessibility action so that it can send any event. (Closed)
Patch Set: Use ParseAXEvent Created 3 years, 9 months 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
« no previous file with comments | « ui/accessibility/ax_action_data.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW
« no previous file with comments | « ui/accessibility/ax_action_data.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698