Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionBuilder.h

Issue 2003033004: Split custom element script use and move it into bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 CustomElementDefinitionBuilder_h
6 #define CustomElementDefinitionBuilder_h
7
8 #include "core/CoreExport.h"
9 #include "wtf/Allocator.h"
10 #include "wtf/Noncopyable.h"
11
12 namespace blink {
13
14 class CustomElementDefinition;
15 class CustomElementDescriptor;
16 class CustomElementsRegistry;
17 class ExceptionState;
18 class ScriptState;
19 class ScriptValue;
20
21 // Implement CustomElementDefinitionBuilder to provide
22 // technology-specific steps for CustomElementsRegistry.define.
23 // https://html.spec.whatwg.org/multipage/scripting.html#dom-customelementsregis try-define
24 class CORE_EXPORT CustomElementDefinitionBuilder {
25 STACK_ALLOCATED();
26 WTF_MAKE_NONCOPYABLE(CustomElementDefinitionBuilder);
27 public:
28 CustomElementDefinitionBuilder() { }
29
30 // This API necessarily sounds JavaScript specific; this implements
31 // some steps of the CustomElementsRegistry.define process, which
32 // are defined in terms of JavaScript.
33
34 // Check the constructor is valid. Return false if processing
35 // should not proceed.
36 virtual bool checkConstructorIntrinsics() = 0;
37
38 // Check the constructor is not already registered in the calling
39 // registry. Return false if processing should not proceed.
40 virtual bool checkConstructorNotRegistered() = 0;
41
42 // Checking the prototype may destroy the window. Return false if
43 // processing should not proceed.
44 virtual bool checkPrototype() = 0;
45
46 // Produce the definition. This must produce a definition.
47 virtual CustomElementDefinition* build(const CustomElementDescriptor&) = 0;
48 };
49
50 } // namespace blink
51
52 #endif // CustomElementDefinitionBuilder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698