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

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

Issue 1952893003: Implement custom element construction and some 'define' checks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698