| 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 ab199e8c849bd3b5666ebb1d183367f918ddcd24..931573cb051845400c313e5f5d2547a71a9895e7 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.h
|
| @@ -60,20 +60,19 @@
|
|
|
| void updateDistributedNodesWithFallback();
|
|
|
| - void attach(const AttachContext& = AttachContext()) final;
|
| - void detach(const AttachContext& = AttachContext()) final;
|
| + void attach(const AttachContext& = AttachContext()) override;
|
| + void detach(const AttachContext& = AttachContext()) override;
|
|
|
| - void attributeChanged(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue, AttributeModificationReason = ModifiedDirectly) final;
|
| + void attributeChanged(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue, AttributeModificationReason = ModifiedDirectly) override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| HTMLSlotElement(Document&);
|
|
|
| - void childrenChanged(const ChildrenChange&) final;
|
| - InsertionNotificationRequest insertedInto(ContainerNode*) final;
|
| - void removedFrom(ContainerNode*) final;
|
| - void willRecalcStyle(StyleRecalcChange) final;
|
| + void childrenChanged(const ChildrenChange&) override;
|
| + InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| + void removedFrom(ContainerNode*) override;
|
|
|
| WillBeHeapVector<RefPtrWillBeMember<Node>> m_assignedNodes;
|
| WillBeHeapVector<RefPtrWillBeMember<Node>> m_distributedNodes;
|
|
|