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

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

Issue 2474363002: MacViews/a11y: Accessibility actions use AXActionData in AXPlatformNodeDelegate. (Closed)
Patch Set: Review comments. Created 4 years 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // on the screen. Optionally pass a subfocus rect in 253 // on the screen. Optionally pass a subfocus rect in
254 // AXActionData.target_rect. 254 // AXActionData.target_rect.
255 scroll_to_make_visible, 255 scroll_to_make_visible,
256 256
257 // Scroll the given object to a specified point on the screen in 257 // Scroll the given object to a specified point on the screen in
258 // global screen coordinates. Pass a point in AXActionData.target_point. 258 // global screen coordinates. Pass a point in AXActionData.target_point.
259 scroll_to_point, 259 scroll_to_point,
260 260
261 set_accessibility_focus, 261 set_accessibility_focus,
262 set_focus, 262 set_focus,
263 blur,
dmazzoni 2016/11/21 04:53:38 nit: sort this alphabetically. it might be nice to
Patti Lor 2016/11/21 23:24:39 Thanks, was going to ask you about this! Done.
263 set_scroll_offset, 264 set_scroll_offset,
264 set_selection, 265 set_selection,
265 266
266 // Don't focus this node, but set it as the sequential focus navigation 267 // Don't focus this node, but set it as the sequential focus navigation
267 // starting point, so that pressing Tab moves to the next element 268 // starting point, so that pressing Tab moves to the next element
268 // following this one, for example. 269 // following this one, for example.
269 set_sequential_focus_navigation_starting_point, 270 set_sequential_focus_navigation_starting_point,
270 271
271 // Replace the value of the control with AXActionData::value and 272 // Replace the value of the control with AXActionData::value and
272 // reset the selection, if applicable. 273 // reset the selection, if applicable.
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 // First node is before the second one. 601 // First node is before the second one.
601 before, 602 before,
602 603
603 // Nodes are the same. 604 // Nodes are the same.
604 equal, 605 equal,
605 606
606 // First node is after the second one. 607 // First node is after the second one.
607 after 608 after
608 }; 609 };
609 }; 610 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698