| 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;
|
|
|
|
|