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

Unified Diff: public/web/WebAXObject.h

Issue 659563006: Add live region root to the cached properties of an AXObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address feedback Created 6 years, 2 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 | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAXObject.h
diff --git a/public/web/WebAXObject.h b/public/web/WebAXObject.h
index 910e4e55954cfdb7e6eff527ce5bd1ca5e64f49b..93bac04d03ac0c3eb0ace2628e17d46dfd6d4daf 100644
--- a/public/web/WebAXObject.h
+++ b/public/web/WebAXObject.h
@@ -122,10 +122,6 @@ public:
BLINK_EXPORT bool ariaFlowTo(WebVector<WebAXObject>& flowToElements) const;
BLINK_EXPORT bool ariaHasPopup() const;
BLINK_EXPORT bool ariaLabelledby(WebVector<WebAXObject>& labelledbyElements) const;
- BLINK_EXPORT bool ariaLiveRegionAtomic() const;
- BLINK_EXPORT bool ariaLiveRegionBusy() const;
- BLINK_EXPORT WebString ariaLiveRegionRelevant() const;
- BLINK_EXPORT WebString ariaLiveRegionStatus() const;
BLINK_EXPORT bool ariaOwns(WebVector<WebAXObject>& ownsElements) const;
BLINK_EXPORT WebRect boundingBoxRect() const;
BLINK_EXPORT bool canvasHasFallbackContent() const;
@@ -147,6 +143,17 @@ public:
BLINK_EXPORT WebAXObject titleUIElement() const;
BLINK_EXPORT WebURL url() const;
+ // Live regions.
+ BLINK_EXPORT bool isInLiveRegion() const;
+ BLINK_EXPORT bool liveRegionAtomic() const;
+ BLINK_EXPORT bool liveRegionBusy() const;
+ BLINK_EXPORT WebString liveRegionRelevant() const;
+ BLINK_EXPORT WebString liveRegionStatus() const;
+ BLINK_EXPORT bool containerLiveRegionAtomic() const;
+ BLINK_EXPORT bool containerLiveRegionBusy() const;
+ BLINK_EXPORT WebString containerLiveRegionRelevant() const;
+ BLINK_EXPORT WebString containerLiveRegionStatus() const;
+
BLINK_EXPORT bool supportsRangeValue() const;
BLINK_EXPORT WebString valueDescription() const;
BLINK_EXPORT float valueForRange() const;
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698