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