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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.h

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: third_party/WebKit/Source/modules/accessibility/AXObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
index 272f1f21c69bafc57022094e5006907e2f105e37..da90e77388da12078b2bc53aa0df23e37eb3d59d 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
@@ -809,7 +809,7 @@ public:
// ARIA live-region features.
bool isLiveRegion() const;
- const AXObject* liveRegionRoot() const;
+ AXObject* liveRegionRoot() const;
virtual const AtomicString& liveRegionStatus() const { return nullAtom; }
virtual const AtomicString& liveRegionRelevant() const { return nullAtom; }
virtual bool liveRegionAtomic() const { return false; }
@@ -970,7 +970,7 @@ protected:
mutable bool m_cachedHasInheritedPresentationalRole : 1;
mutable bool m_cachedIsPresentationalChild : 1;
mutable bool m_cachedAncestorExposesActiveDescendant : 1;
- mutable Member<const AXObject> m_cachedLiveRegionRoot;
+ mutable Member<AXObject> m_cachedLiveRegionRoot;
Member<AXObjectCacheImpl> m_axObjectCache;

Powered by Google App Engine
This is Rietveld 408576698