| Index: third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSlotElement.h b/third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| index 3e23a8e6d1c644941c6b3cc98d5cc7f730d33ad3..0812c46278438b7c853e8b3c2159ae73948d36fe 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| @@ -43,9 +43,9 @@ class CORE_EXPORT HTMLSlotElement final : public HTMLElement {
|
| public:
|
| DECLARE_NODE_FACTORY(HTMLSlotElement);
|
|
|
| - const HeapVector<Member<Node>>& getAssignedNodes() const { ASSERT(!needsDistributionRecalc()); return m_assignedNodes; }
|
| + const HeapVector<Member<Node>>& assignedNodes() const { ASSERT(!needsDistributionRecalc()); return m_assignedNodes; }
|
| const HeapVector<Member<Node>>& getDistributedNodes();
|
| - const HeapVector<Member<Node>> getAssignedNodesForBinding(const AssignedNodesOptions&);
|
| + const HeapVector<Member<Node>> assignedNodesForBinding(const AssignedNodesOptions&);
|
|
|
| Node* firstDistributedNode() const { return m_distributedNodes.isEmpty() ? nullptr : m_distributedNodes.first().get(); }
|
| Node* lastDistributedNode() const { return m_distributedNodes.isEmpty() ? nullptr : m_distributedNodes.last().get(); }
|
|
|