| 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 ScriptCustomElementDefinitionBuilder_h | 5 #ifndef ScriptCustomElementDefinitionBuilder_h |
| 6 #define ScriptCustomElementDefinitionBuilder_h | 6 #define ScriptCustomElementDefinitionBuilder_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/dom/custom/CustomElementDefinitionBuilder.h" | 9 #include "core/dom/custom/CustomElementDefinitionBuilder.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "platform/wtf/Allocator.h" |
| 12 #include "platform/wtf/HashSet.h" |
| 13 #include "platform/wtf/Noncopyable.h" |
| 14 #include "platform/wtf/RefPtr.h" |
| 15 #include "platform/wtf/text/AtomicString.h" |
| 16 #include "platform/wtf/text/AtomicStringHash.h" |
| 17 #include "platform/wtf/text/StringView.h" |
| 11 #include "v8.h" | 18 #include "v8.h" |
| 12 #include "wtf/Allocator.h" | |
| 13 #include "wtf/HashSet.h" | |
| 14 #include "wtf/Noncopyable.h" | |
| 15 #include "wtf/RefPtr.h" | |
| 16 #include "wtf/text/AtomicString.h" | |
| 17 #include "wtf/text/AtomicStringHash.h" | |
| 18 #include "wtf/text/StringView.h" | |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 | 21 |
| 22 class CustomElementRegistry; | 22 class CustomElementRegistry; |
| 23 class ExceptionState; | 23 class ExceptionState; |
| 24 class ScriptState; | 24 class ScriptState; |
| 25 class ScriptValue; | 25 class ScriptValue; |
| 26 | 26 |
| 27 class CORE_EXPORT ScriptCustomElementDefinitionBuilder | 27 class CORE_EXPORT ScriptCustomElementDefinitionBuilder |
| 28 : public CustomElementDefinitionBuilder { | 28 : public CustomElementDefinitionBuilder { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 bool valueForName(const v8::Local<v8::Object>&, | 62 bool valueForName(const v8::Local<v8::Object>&, |
| 63 const StringView&, | 63 const StringView&, |
| 64 v8::Local<v8::Value>&) const; | 64 v8::Local<v8::Value>&) const; |
| 65 bool callableForName(const StringView&, v8::Local<v8::Function>&) const; | 65 bool callableForName(const StringView&, v8::Local<v8::Function>&) const; |
| 66 bool retrieveObservedAttributes(); | 66 bool retrieveObservedAttributes(); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace blink | 69 } // namespace blink |
| 70 | 70 |
| 71 #endif // ScriptCustomElementDefinitionBuilder_h | 71 #endif // ScriptCustomElementDefinitionBuilder_h |
| OLD | NEW |