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

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

Issue 1810973004: Add the CustomElementsRegistry interface behind the flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase (merge conflict) Created 4 years, 8 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 CustomElementsRegistry_h
6 #define CustomElementsRegistry_h
7
8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/CoreExport.h"
10
11 namespace blink {
12
13 class ElementRegistrationOptions;
14 class ExceptionState;
15 class ScriptState;
16 class ScriptValue;
17
18 class CORE_EXPORT CustomElementsRegistry final
19 : public GarbageCollected<CustomElementsRegistry>
20 , public ScriptWrappable {
21 DEFINE_WRAPPERTYPEINFO();
22 public:
23 static CustomElementsRegistry* create()
24 {
25 return new CustomElementsRegistry();
26 }
27
28 void define(ScriptState*, const AtomicString& name,
29 const ScriptValue& constructor, const ElementRegistrationOptions&,
30 ExceptionState&);
31
32 DECLARE_TRACE();
33
34 private:
35 CustomElementsRegistry();
36 };
37
38 } // namespace blink
39
40 #endif // CustomElementsRegistry_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/custom/CustomElementsRegistry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698