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

Unified Diff: Source/modules/accessibility/AXList.cpp

Issue 1076453004: Show reasons why nodes are ignored in accessibility sidebar (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 8 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: Source/modules/accessibility/AXList.cpp
diff --git a/Source/modules/accessibility/AXList.cpp b/Source/modules/accessibility/AXList.cpp
index 42c0e18bfe716530d8a1020603b43b4b504af776..12e597b63e4650d448ead30b05a54941986ffbfc 100644
--- a/Source/modules/accessibility/AXList.cpp
+++ b/Source/modules/accessibility/AXList.cpp
@@ -51,9 +51,9 @@ PassRefPtr<AXList> AXList::create(LayoutObject* layoutObject, AXObjectCacheImpl*
return adoptRef(new AXList(layoutObject, axObjectCache));
}
-bool AXList::computeAccessibilityIsIgnored() const
+bool AXList::computeAccessibilityIsIgnored(PassRefPtr<TypeBuilder::Array<TypeBuilder::Accessibility::AXProperty>> ignoredReasons) const
{
- return accessibilityIsIgnoredByDefault();
+ return accessibilityIsIgnoredByDefault(ignoredReasons);
}
bool AXList::isDescriptionList() const

Powered by Google App Engine
This is Rietveld 408576698