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

Unified Diff: ui/accessibility/ax_tree_combiner.cc

Issue 2054393002: Implemented IAccessible2 reverse relations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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_tree_combiner.cc
diff --git a/ui/accessibility/ax_tree_combiner.cc b/ui/accessibility/ax_tree_combiner.cc
index f1bd74536a9b4a9949609f0b2cdc1b979c2bd8b0..077b734c35f0349d92e1d79581c2a362507ed79f 100644
--- a/ui/accessibility/ax_tree_combiner.cc
+++ b/ui/accessibility/ax_tree_combiner.cc
@@ -14,6 +14,7 @@ namespace {
bool IsNodeIdIntAttribute(AXIntAttribute attr) {
switch (attr) {
case AX_ATTR_ACTIVEDESCENDANT_ID:
+ case AX_ATTR_MEMBER_OF_ID:
case AX_ATTR_NEXT_ON_LINE_ID:
case AX_ATTR_PREVIOUS_ON_LINE_ID:
case AX_ATTR_TABLE_HEADER_ID:
@@ -71,8 +72,8 @@ bool IsNodeIdIntListAttribute(AXIntListAttribute attr) {
case AX_ATTR_CONTROLS_IDS:
case AX_ATTR_DESCRIBEDBY_IDS:
case AX_ATTR_FLOWTO_IDS:
- case AX_ATTR_INDIRECT_CHILD_IDS:
case AX_ATTR_LABELLEDBY_IDS:
dmazzoni 2016/06/13 05:41:18 This was sorted correctly before
+ case AX_ATTR_INDIRECT_CHILD_IDS:
case AX_ATTR_UNIQUE_CELL_IDS:
return true;
« content/browser/accessibility/browser_accessibility_win.cc ('K') | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698