Chromium Code Reviews| 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 0812c46278438b7c853e8b3c2159ae73948d36fe..90b0c95ef15722dce960590f8bca0431745c32ae 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLSlotElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.h |
| @@ -53,6 +53,8 @@ public: |
| Node* distributedNodeNextTo(const Node&) const; |
| Node* distributedNodePreviousTo(const Node&) const; |
| + AtomicString normalizedSlotName() const; |
|
kochi
2016/04/11 10:57:54
No user of this function?
I don't find the impleme
hayato
2016/04/12 04:06:53
Nice catch. Removed.
|
| + |
| void appendAssignedNode(Node&); |
| void appendDistributedNode(Node&); |
| void appendDistributedNodesFrom(const HTMLSlotElement& other); |
| @@ -69,6 +71,7 @@ public: |
| void attributeChanged(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue, AttributeModificationReason = ModifiedDirectly) final; |
| short tabIndex() const override; |
| + AtomicString name() const; |
| DECLARE_VIRTUAL_TRACE(); |