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

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
« 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 751a9b9f18094466fb6468e28e5ed62d8b0cad5b..164a21bd92f60c4391300018d954bee031ab42af 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -242,7 +242,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,
@@ -299,11 +299,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,
@@ -352,7 +354,7 @@
};
[cpp_enum_prefix_override="ax_attr"] enum AXIntAttribute {
- action,
+ default_action_verb,
// Scrollable container attributes.
scroll_x,
scroll_x_min,
« 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