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

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

Issue 2106953005: Mac: Add new accessibility attributes for textfields (and some for all views). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ax-attrs
Patch Set: Typo. Created 4 years, 5 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
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 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 5 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
6 // until the Chromium and Blink trees are merged. 6 // until the Chromium and Blink trees are merged.
7 [camel_case_enum_to_string=true] namespace ui { 7 [camel_case_enum_to_string=true] namespace ui {
8 8
9 // For new entries to the following three enums, also add to 9 // For new entries to the following three enums, also add to
10 // chrome/common/extensions/api/automation.idl. 10 // chrome/common/extensions/api/automation.idl.
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 enum AXState { 200 enum AXState {
201 busy, 201 busy,
202 checked, 202 checked,
203 collapsed, 203 collapsed,
204 default, 204 default,
205 disabled, // ui/views only 205 disabled, // ui/views only
206 editable, 206 editable,
207 enabled, // content only 207 enabled, // content only
208 expanded, 208 expanded,
209 focusable, 209 focusable,
210 focused,
dmazzoni 2016/06/29 16:24:10 We used to have "focused" as a state here, but we
Patti Lor 2016/06/30 05:29:54 Oh I see, thank you! Have removed it and used Nati
210 haspopup, 211 haspopup,
211 horizontal, 212 horizontal,
212 hovered, 213 hovered,
213 invisible, 214 invisible,
214 linked, 215 linked,
215 multiline, 216 multiline,
216 multiselectable, 217 multiselectable,
217 offscreen, 218 offscreen,
218 pressed, 219 pressed,
219 protected, 220 protected,
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 swipe_left_3, 505 swipe_left_3,
505 swipe_up_3, 506 swipe_up_3,
506 swipe_right_3, 507 swipe_right_3,
507 swipe_down_3, 508 swipe_down_3,
508 swipe_left_4, 509 swipe_left_4,
509 swipe_up_4, 510 swipe_up_4,
510 swipe_right_4, 511 swipe_right_4,
511 swipe_down_4 512 swipe_down_4
512 }; 513 };
513 }; 514 };
OLDNEW
« no previous file with comments | « no previous file | ui/accessibility/ax_node_data.h » ('j') | ui/accessibility/platform/ax_platform_node_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698