Index: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h |
diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h |
index eaa59e9c89c951f5c0280378d7db0ba9f0ac888d..8a8b60547101fa380cf2a7c6002e24b2dbcde53e 100644 |
--- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h |
+++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.h |
@@ -114,15 +114,8 @@ public: |
SlotAssignment& ensureSlotAssignment(); |
- void didAddSlot(); |
- void didRemoveSlot(); |
- const HeapVector<Member<HTMLSlotElement>>& descendantSlots(); |
- |
- void assignV1(); |
void distributeV1(); |
- HTMLSlotElement* assignedSlotFor(const Node&) const; |
- |
Element* activeElement() const; |
String innerHTML() const; |
@@ -157,19 +150,15 @@ private: |
// ShadowRoots should never be cloned. |
Node* cloneNode(bool) override { return nullptr; } |
- void invalidateDescendantSlots(); |
- unsigned descendantSlotCount() const; |
- |
Member<ShadowRootRareDataV0> m_shadowRootRareDataV0; |
Member<StyleSheetList> m_styleSheetList; |
Member<SlotAssignment> m_slotAssignment; |
- unsigned m_numberOfStyles : 13; |
+ unsigned m_numberOfStyles : 14; |
unsigned m_childShadowRootCount : 13; |
unsigned m_type : 2; |
unsigned m_registeredWithParentShadowRoot : 1; |
unsigned m_descendantInsertionPointsIsValid : 1; |
unsigned m_delegatesFocus : 1; |
- unsigned m_descendantSlotsIsValid : 1; |
}; |
inline Element* ShadowRoot::activeElement() const |