| 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 94b694d8d7010dd3c66db0db05d49afb509c297e..d8e60a25b8671ebf85c9117efa70c52de08e82c5 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
|
| @@ -907,10 +907,10 @@ protected:
|
| static String recursiveTextAlternative(const AXObject&, bool inAriaLabelledByTraversal, AXObjectSet& visited);
|
| bool isHiddenForTextAlternativeCalculation() const;
|
| String ariaTextAlternative(bool recursive, bool inAriaLabelledByTraversal, AXObjectSet& visited, AXNameFrom&, AXRelatedObjectVector*, NameSources*, bool* foundTextAlternative) const;
|
| - String textFromElements(bool inAriaLabelledByTraversal, AXObjectSet& visited, WillBeHeapVector<RawPtrWillBeMember<Element>>& elements, AXRelatedObjectVector* relatedObjects) const;
|
| + String textFromElements(bool inAriaLabelledByTraversal, AXObjectSet& visited, HeapVector<Member<Element>>& elements, AXRelatedObjectVector* relatedObjects) const;
|
| void tokenVectorFromAttribute(Vector<String>&, const QualifiedName&) const;
|
| - void elementsFromAttribute(WillBeHeapVector<RawPtrWillBeMember<Element>>& elements, const QualifiedName&) const;
|
| - void ariaLabelledbyElementVector(WillBeHeapVector<RawPtrWillBeMember<Element>>& elements) const;
|
| + void elementsFromAttribute(HeapVector<Member<Element>>& elements, const QualifiedName&) const;
|
| + void ariaLabelledbyElementVector(HeapVector<Member<Element>>& elements) const;
|
| String textFromAriaLabelledby(AXObjectSet& visited, AXRelatedObjectVector* relatedObjects) const;
|
| String textFromAriaDescribedby(AXRelatedObjectVector* relatedObjects) const;
|
|
|
|
|