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

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

Issue 2490073002: MacViews/a11y: Allow accessibility clients to focus and unfocus focusable Views. (Closed)
Patch Set: Show the widget before test start. 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 270
271 // Replace the value of the control with AXActionData::value and 271 // Replace the value of the control with AXActionData::value and
272 // reset the selection, if applicable. 272 // reset the selection, if applicable.
273 set_value, 273 set_value,
274 274
275 show_context_menu 275 show_context_menu
276 }; 276 };
277 277
278 enum AXActionFlags { 278 enum AXActionFlags {
279 request_images, 279 request_images,
280 request_inline_text_boxes 280 request_inline_text_boxes,
281
282 // Unfocuses the control.
283 set_unfocused
dmazzoni 2016/11/14 23:13:37 Unused?
Patti Lor 2016/11/15 04:13:34 Done, thanks.
284
281 }; 285 };
282 286
283 // A change to the accessibility tree. 287 // A change to the accessibility tree.
284 enum AXMutation { 288 enum AXMutation {
285 node_created, 289 node_created,
286 subtree_created, 290 subtree_created,
287 node_changed, 291 node_changed,
288 node_removed 292 node_removed
289 }; 293 };
290 294
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 // First node is before the second one. 604 // First node is before the second one.
601 before, 605 before,
602 606
603 // Nodes are the same. 607 // Nodes are the same.
604 equal, 608 equal,
605 609
606 // First node is after the second one. 610 // First node is after the second one.
607 after 611 after
608 }; 612 };
609 }; 613 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698