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

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

Issue 1718433002: Revert of Propagate inherited properties into slotted elements on recalc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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;

Powered by Google App Engine
This is Rietveld 408576698