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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index edc7304bee085a4cc3b72e1cb1b622f588f6994c..ca638d233694cdd543972b1badcf5dd683096ea5 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -213,7 +213,6 @@
enum AXState {
busy,
- checked,
collapsed,
default,
disabled,
@@ -434,6 +433,9 @@
// if an element has an aria-invalid attribute.
invalid_state,
+ // Of type AXCheckedState
+ checked_state,
+
// Specifies the direction of the text, e.g., right-to-left.
text_direction,
@@ -453,10 +455,6 @@
};
[cpp_enum_prefix_override="ax_attr"] enum AXBoolAttribute {
- // True if an ARIA toggle button, a checkbox or
- // a menu item checkbox is in the "mixed" state.
- STATE_mixed,
-
// Live region attributes.
container_live_atomic,
container_live_busy,
@@ -593,6 +591,12 @@
other
};
+ enum AXCheckedState {
+ false,
+ true,
+ mixed
+ };
+
enum AXSortDirection {
unsorted,
ascending,
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698