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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h

Issue 1994093002: Introduce CustomElementRegistry#get() method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2016-06-01T15:09:57 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
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 ScriptCustomElementDefinition_h 5 #ifndef ScriptCustomElementDefinition_h
6 #define ScriptCustomElementDefinition_h 6 #define ScriptCustomElementDefinition_h
7 7
8 #include "bindings/core/v8/ScopedPersistent.h" 8 #include "bindings/core/v8/ScopedPersistent.h"
9 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
10 #include "core/dom/custom/CustomElementDefinition.h" 10 #include "core/dom/custom/CustomElementDefinition.h"
(...skipping 27 matching lines...) Expand all
38 v8::Local<v8::Object> constructor() const; 38 v8::Local<v8::Object> constructor() const;
39 v8::Local<v8::Object> prototype() const; 39 v8::Local<v8::Object> prototype() const;
40 40
41 private: 41 private:
42 ScriptCustomElementDefinition( 42 ScriptCustomElementDefinition(
43 ScriptState*, 43 ScriptState*,
44 const CustomElementDescriptor&, 44 const CustomElementDescriptor&,
45 const v8::Local<v8::Object>& constructor, 45 const v8::Local<v8::Object>& constructor,
46 const v8::Local<v8::Object>& prototype); 46 const v8::Local<v8::Object>& prototype);
47 47
48 // Implementations of |CustomElementDefinition|
49 ScriptValue getConstructorForScript() final;
50
48 RefPtr<ScriptState> m_scriptState; 51 RefPtr<ScriptState> m_scriptState;
49 ScopedPersistent<v8::Object> m_constructor; 52 ScopedPersistent<v8::Object> m_constructor;
50 ScopedPersistent<v8::Object> m_prototype; 53 ScopedPersistent<v8::Object> m_prototype;
51 }; 54 };
52 55
53 } // namespace blink 56 } // namespace blink
54 57
55 #endif // ScriptCustomElementDefinition_h 58 #endif // ScriptCustomElementDefinition_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698