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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2518183002: Moved action verbs out of Blink. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index f98a05ffd1f3bb5692ed1dc89dacc6ba597f828a..cf416b5c21f1b0d2025ec62b1e26bb53a271ea89 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -280,6 +280,19 @@
request_inline_text_boxes
};
+ // Lists the actions that can be performed on a given element.
dmazzoni 2016/11/22 01:01:08 Please add a comment explaining the difference bet
+ // Only one action is supported for now.
+ enum AXSupportedAction {
+ activate,
+ check,
+ click,
+ jump,
+ open,
+ press,
+ select,
+ uncheck
+ };
+
// A change to the accessibility tree.
enum AXMutation {
node_created,
@@ -290,7 +303,6 @@
[cpp_enum_prefix_override="ax_attr"] enum AXStringAttribute {
access_key,
- action,
// Only used when invalid_state == invalid_state_other.
aria_invalid_value,
auto_complete,
@@ -314,6 +326,7 @@
};
[cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute {
+ action,
// Scrollable container attributes.
scroll_x,
scroll_x_min,

Powered by Google App Engine
This is Rietveld 408576698