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 b72bd375cebd3e7a2a48eef6b81af0c5938b55bc..991d2fd3ec1fc958693ba084fe1aec77574ef31b 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLSlotElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.h |
@@ -63,19 +63,20 @@ public: |
void updateDistributedNodesWithFallback(); |
void didUpdateDistribution(); |
- void attach(const AttachContext& = AttachContext()) override; |
- void detach(const AttachContext& = AttachContext()) override; |
+ void attach(const AttachContext& = AttachContext()) final; |
+ void detach(const AttachContext& = AttachContext()) final; |
- void attributeChanged(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue, AttributeModificationReason = ModifiedDirectly) override; |
+ void attributeChanged(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue, AttributeModificationReason = ModifiedDirectly) final; |
DECLARE_VIRTUAL_TRACE(); |
private: |
HTMLSlotElement(Document&); |
- void childrenChanged(const ChildrenChange&) override; |
- InsertionNotificationRequest insertedInto(ContainerNode*) override; |
- void removedFrom(ContainerNode*) override; |
+ void childrenChanged(const ChildrenChange&) final; |
+ InsertionNotificationRequest insertedInto(ContainerNode*) final; |
+ void removedFrom(ContainerNode*) final; |
+ void willRecalcStyle(StyleRecalcChange) final; |
void dispatchSlotChangeEvent(); |