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

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: Fixed content_browsertests. 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 3493cfab9c89cfb0bca1df0b50bb7236c29b86ab..8008f4c785812fca57202b268c6e4a4ef4b3a387 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; }
@@ -982,7 +982,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;
« no previous file with comments | « content/renderer/accessibility/blink_ax_tree_source.cc ('k') | third_party/WebKit/Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698