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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2863703003: A11y: Rename AXSupportedAction to AXDefaultActionVerb. (Closed)
Patch Set: Rebase. Created 3 years, 7 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
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index aebf4f64631bb613652c6fa0a8d1afb97ae8e136..63b4d6fbdd3ceb36001b5449d630c0ef8f7280c2 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -241,7 +241,7 @@
};
// An action to be taken on an accessibility node.
- // In contrast to |AXSupportedAction|, these describe what happens to the
+ // In contrast to |AXDefaultActionVerb|, these describe what happens to the
// object, e.g. "FOCUS".
enum AXAction {
blur,
@@ -298,11 +298,13 @@
request_inline_text_boxes
};
- // Lists the actions that can be performed on a given node.
+ // A list of valid values for the |AXIntAttribute| |default_action_verb|.
+ // These will describe the action that will be performed on a given node when
+ // executing the default action, which is a click.
// In contrast to |AXAction|, these describe what the user can do on the
// object, e.g. "PRESS", not what happens to the object as a result.
- // Only one action is supported for now.
- enum AXSupportedAction {
+ // Only one verb can be used at a time to describe the default action.
+ enum AXDefaultActionVerb {
activate,
check,
click,
@@ -351,7 +353,7 @@
};
[cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute {
- action,
+ default_action_verb,
// Scrollable container attributes.
scroll_x,
scroll_x_min,

Powered by Google App Engine
This is Rietveld 408576698