| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CustomElementDefinition_h | 5 #ifndef CustomElementDefinition_h |
| 6 #define CustomElementDefinition_h | 6 #define CustomElementDefinition_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptValue.h" | 8 #include "bindings/core/v8/ScriptValue.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/dom/custom/CustomElementDescriptor.h" | 10 #include "core/dom/custom/CustomElementDescriptor.h" |
| 11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 12 #include "wtf/HashSet.h" |
| 12 #include "wtf/Noncopyable.h" | 13 #include "wtf/Noncopyable.h" |
| 14 #include "wtf/text/AtomicString.h" |
| 15 #include "wtf/text/AtomicStringHash.h" |
| 13 | 16 |
| 14 namespace blink { | 17 namespace blink { |
| 15 | 18 |
| 16 class ScriptState; | 19 class ScriptState; |
| 17 class Element; | 20 class Element; |
| 18 | 21 |
| 19 class CORE_EXPORT CustomElementDefinition | 22 class CORE_EXPORT CustomElementDefinition |
| 20 : public GarbageCollectedFinalized<CustomElementDefinition> { | 23 : public GarbageCollectedFinalized<CustomElementDefinition> { |
| 21 WTF_MAKE_NONCOPYABLE(CustomElementDefinition); | 24 WTF_MAKE_NONCOPYABLE(CustomElementDefinition); |
| 22 public: | 25 public: |
| 23 CustomElementDefinition(const CustomElementDescriptor&); | 26 CustomElementDefinition(const CustomElementDescriptor&); |
| 27 CustomElementDefinition(const CustomElementDescriptor&, |
| 28 const HashSet<AtomicString>&); |
| 24 virtual ~CustomElementDefinition(); | 29 virtual ~CustomElementDefinition(); |
| 25 | 30 |
| 26 DECLARE_VIRTUAL_TRACE(); | 31 DECLARE_VIRTUAL_TRACE(); |
| 27 | 32 |
| 28 const CustomElementDescriptor& descriptor() { return m_descriptor; } | 33 const CustomElementDescriptor& descriptor() { return m_descriptor; } |
| 29 | 34 |
| 30 // TODO(yosin): To support Web Modules, introduce an abstract | 35 // TODO(yosin): To support Web Modules, introduce an abstract |
| 31 // class |CustomElementConstructor| to allow us to have JavaScript | 36 // class |CustomElementConstructor| to allow us to have JavaScript |
| 32 // and C++ constructors and ask the binding layer to convert | 37 // and C++ constructors and ask the binding layer to convert |
| 33 // |CustomElementConstructor| to |ScriptValue|. Replace | 38 // |CustomElementConstructor| to |ScriptValue|. Replace |
| 34 // |getConstructorForScript()| by |getConstructor() -> | 39 // |getConstructorForScript()| by |getConstructor() -> |
| 35 // CustomElementConstructor|. | 40 // CustomElementConstructor|. |
| 36 virtual ScriptValue getConstructorForScript() = 0; | 41 virtual ScriptValue getConstructorForScript() = 0; |
| 37 | 42 |
| 38 using ConstructionStack = HeapVector<Member<Element>, 1>; | 43 using ConstructionStack = HeapVector<Member<Element>, 1>; |
| 39 ConstructionStack& constructionStack() | 44 ConstructionStack& constructionStack() |
| 40 { | 45 { |
| 41 return m_constructionStack; | 46 return m_constructionStack; |
| 42 } | 47 } |
| 43 | 48 |
| 44 void upgrade(Element*); | 49 void upgrade(Element*); |
| 45 | 50 |
| 46 // TODO(kojii): Change these methods to pure when script-side is implemented
. | 51 virtual bool hasConnectedCallback() const = 0; |
| 47 virtual bool hasConnectedCallback() const { return true; } | 52 virtual bool hasDisconnectedCallback() const = 0; |
| 48 virtual bool hasDisconnectedCallback() const { return true; } | 53 bool hasAttributeChangedCallback(const QualifiedName&); |
| 49 virtual bool hasAttributeChangedCallback(const QualifiedName&) const { retur
n true; } | |
| 50 | 54 |
| 51 virtual void runConnectedCallback(Element*) {} | 55 virtual void runConnectedCallback(Element*) = 0; |
| 52 virtual void runDisconnectedCallback(Element*) {} | 56 virtual void runDisconnectedCallback(Element*) = 0; |
| 53 virtual void runAttributeChangedCallback(Element*, const QualifiedName&, | 57 virtual void runAttributeChangedCallback(Element*, const QualifiedName&, |
| 54 const AtomicString& oldValue, const AtomicString& newValue) {} | 58 const AtomicString& oldValue, const AtomicString& newValue) = 0; |
| 55 | 59 |
| 56 void enqueueUpgradeReaction(Element*); | 60 void enqueueUpgradeReaction(Element*); |
| 57 void enqueueConnectedCallback(Element*); | 61 void enqueueConnectedCallback(Element*); |
| 58 void enqueueDisconnectedCallback(Element*); | 62 void enqueueDisconnectedCallback(Element*); |
| 59 void enqueueAttributeChangedCallback(Element*, const QualifiedName&, | 63 void enqueueAttributeChangedCallback(Element*, const QualifiedName&, |
| 60 const AtomicString& oldValue, const AtomicString& newValue); | 64 const AtomicString& oldValue, const AtomicString& newValue); |
| 61 | 65 |
| 62 protected: | 66 protected: |
| 63 virtual bool runConstructor(Element*) = 0; | 67 virtual bool runConstructor(Element*) = 0; |
| 64 | 68 |
| 69 HashSet<AtomicString> m_observedAttributes; |
| 70 |
| 65 private: | 71 private: |
| 66 const CustomElementDescriptor m_descriptor; | 72 const CustomElementDescriptor m_descriptor; |
| 67 ConstructionStack m_constructionStack; | 73 ConstructionStack m_constructionStack; |
| 74 |
| 75 void enqueueAttributeChangedCallbackForAllAttributes(Element*); |
| 68 }; | 76 }; |
| 69 | 77 |
| 70 } // namespace blink | 78 } // namespace blink |
| 71 | 79 |
| 72 #endif // CustomElementDefinition_h | 80 #endif // CustomElementDefinition_h |
| OLD | NEW |