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

Unified Diff: Source/modules/accessibility/AXProgressIndicator.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/AXProgressIndicator.cpp
diff --git a/Source/modules/accessibility/AXProgressIndicator.cpp b/Source/modules/accessibility/AXProgressIndicator.cpp
index c1411e29be7ebca82ff7d007557123434ca4cfab..6683254ee70ae43a7744e196419708ff359568b7 100644
--- a/Source/modules/accessibility/AXProgressIndicator.cpp
+++ b/Source/modules/accessibility/AXProgressIndicator.cpp
@@ -48,9 +48,9 @@ AccessibilityRole AXProgressIndicator::roleValue() const
return ProgressIndicatorRole;
}
-bool AXProgressIndicator::computeAccessibilityIsIgnored() const
+bool AXProgressIndicator::computeAccessibilityIsIgnored(PassRefPtr<TypeBuilder::Array<TypeBuilder::Accessibility::AXProperty>> ignoredReasons) const
{
- return accessibilityIsIgnoredByDefault();
+ return accessibilityIsIgnoredByDefault(ignoredReasons);
}
float AXProgressIndicator::valueForRange() const

Powered by Google App Engine
This is Rietveld 408576698