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

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: git cl format 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
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 enum AXState { 198 enum AXState {
199 busy, 199 busy,
200 checked, 200 checked,
201 collapsed, 201 collapsed,
202 default, 202 default,
203 disabled, // ui/views only 203 disabled, // ui/views only
204 editable, 204 editable,
205 enabled, // content only 205 enabled, // content only
206 expanded, 206 expanded,
207 focusable, 207 focusable,
208 focused,
209 haspopup, 208 haspopup,
210 horizontal, 209 horizontal,
211 hovered, 210 hovered,
212 invisible, 211 invisible,
213 linked, 212 linked,
214 multiline, 213 multiline,
215 multiselectable, 214 multiselectable,
216 offscreen, 215 offscreen,
217 pressed, 216 pressed,
218 protected, 217 protected,
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 }; 443 };
445 444
446 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom { 445 [cpp_enum_prefix_override="ax"] enum AXDescriptionFrom {
447 description_from_uninitialized = 0, 446 description_from_uninitialized = 0,
448 description_from_attribute, 447 description_from_attribute,
449 description_from_contents, 448 description_from_contents,
450 description_from_placeholder, 449 description_from_placeholder,
451 description_from_related_element 450 description_from_related_element
452 }; 451 };
453 }; 452 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698