| 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 "platform/wtf/HashSet.h" |
| 13 #include "wtf/Noncopyable.h" | 13 #include "platform/wtf/Noncopyable.h" |
| 14 #include "wtf/text/AtomicString.h" | 14 #include "platform/wtf/text/AtomicString.h" |
| 15 #include "wtf/text/AtomicStringHash.h" | 15 #include "platform/wtf/text/AtomicStringHash.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class Document; | 19 class Document; |
| 20 class Element; | 20 class Element; |
| 21 class ExceptionState; | 21 class ExceptionState; |
| 22 class HTMLElement; | 22 class HTMLElement; |
| 23 class QualifiedName; | 23 class QualifiedName; |
| 24 | 24 |
| 25 class CORE_EXPORT CustomElementDefinition | 25 class CORE_EXPORT CustomElementDefinition |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ConstructionStack construction_stack_; | 107 ConstructionStack construction_stack_; |
| 108 HashSet<AtomicString> observed_attributes_; | 108 HashSet<AtomicString> observed_attributes_; |
| 109 bool has_style_attribute_changed_callback_; | 109 bool has_style_attribute_changed_callback_; |
| 110 | 110 |
| 111 void EnqueueAttributeChangedCallbackForAllAttributes(Element*); | 111 void EnqueueAttributeChangedCallbackForAllAttributes(Element*); |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace blink | 114 } // namespace blink |
| 115 | 115 |
| 116 #endif // CustomElementDefinition_h | 116 #endif // CustomElementDefinition_h |
| OLD | NEW |