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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 2207573002: Implement 3 Mac accessibility parameterized attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to enum Created 4 years, 4 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 | « content/browser/accessibility/browser_accessibility_manager_unittest.cc ('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 b0be5c0ea7b00b6531a1009302ae2602da5b48df..92f3af18e98da56a71d07973b96a78bcbde9da9a 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -513,4 +513,12 @@
downstream = 0,
upstream = 1
};
+
+ // Compares two nodes in an accessibility tree in pre-order traversal.
+ enum AXTreeOrder {
+ undefined, // Not in the same tree, or other error.
+ before, // First node is before the second one.
+ equal, // Nodes are the same.
+ after // First node is after the second one.
+ };
};
« no previous file with comments | « content/browser/accessibility/browser_accessibility_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698