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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2447013009: Implement Increment and Decrement accessible actions (Closed)
Patch Set: Change to make test pass on Android 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
« no previous file with comments | « content/test/BUILD.gn ('k') | no next file » | 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 30bde3590748457baf1dc8e274b5793815e8c0f5..f98a05ffd1f3bb5692ed1dc89dacc6ba597f828a 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -232,6 +232,9 @@
// An action to be taken on an accessibility node.
enum AXAction {
+ // Decrement a slider or range control by one step value.
+ decrement,
+
// Do the default action for an object, typically this means "click".
do_default,
@@ -239,6 +242,9 @@
// HOVER event on it in response.
hit_test,
+ // Increment a slider or range control by one step value.
+ increment,
+
// Delete any selected text in the control's text value and
// insert |AXActionData::value| in its place, like when typing or pasting.
replace_selected_text,
@@ -460,7 +466,7 @@
// within the object's bounds, the second offset is the right coordinate
// of the second character, and so on.
character_offsets,
-
+
// Used for caching. Do not read directly. Use
// |AXNode::GetOrComputeLineStartOffsets|
// For all text fields and content editable roots: A list of the start
« no previous file with comments | « content/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698