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

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

Issue 1589623002: Keep track of accessibility focus across windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final suggestions Created 4 years, 10 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 | « third_party/WebKit/public/web/WebDocument.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | 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 // 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 enum AXState { 199 enum AXState {
200 busy, 200 busy,
201 checked, 201 checked,
202 collapsed, 202 collapsed,
203 default, 203 default,
204 disabled, // ui/views only 204 disabled, // ui/views only
205 editable, 205 editable,
206 enabled, // content only 206 enabled, // content only
207 expanded, 207 expanded,
208 focusable, 208 focusable,
209 focused,
210 haspopup, 209 haspopup,
211 horizontal, 210 horizontal,
212 hovered, 211 hovered,
213 invisible, 212 invisible,
214 linked, 213 linked,
215 multiline, 214 multiline,
216 multiselectable, 215 multiselectable,
217 offscreen, 216 offscreen,
218 pressed, 217 pressed,
219 protected, 218 protected,
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 }; 444 };
446 445
447 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { 446 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom {
448 description_from_uninitialized = 0, 447 description_from_uninitialized = 0,
449 description_from_attribute, 448 description_from_attribute,
450 description_from_contents, 449 description_from_contents,
451 description_from_placeholder, 450 description_from_placeholder,
452 description_from_related_element 451 description_from_related_element
453 }; 452 };
454 }; 453 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebDocument.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698