Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Unified Diff: third_party/WebKit/Source/core/html/HTMLSlotElement.h

Issue 1708213002: Propagate inherited properties into slotted elements on recalc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed non-oilpan build Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698