OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CustomElementDefinition_h |
| 6 #define CustomElementDefinition_h |
| 7 |
| 8 #include "bindings/core/v8/ScriptValue.h" |
| 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/text/AtomicString.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class CustomElementDefinition final |
| 15 : public GarbageCollectedFinalized<CustomElementDefinition> { |
| 16 public: |
| 17 CustomElementDefinition( |
| 18 const AtomicString& localName, |
| 19 const ScriptValue& prototype); |
| 20 |
| 21 const AtomicString& localName() const { return m_localName; } |
| 22 const ScriptValue& prototype() const { return m_prototype; } |
| 23 |
| 24 DEFINE_INLINE_TRACE() { } |
| 25 |
| 26 private: |
| 27 AtomicString m_localName; |
| 28 // TODO(dominicc): Make this a weak handle and insinuate a reference |
| 29 // from the CustomElementsRegistry. |
| 30 ScriptValue m_prototype; |
| 31 }; |
| 32 |
| 33 } // namespace blink |
| 34 |
| 35 #endif // CustomElementDefinition_h |
OLD | NEW |