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

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

Issue 1952893003: Implement custom element construction and some 'define' checks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement feedback. 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 V8HiddenValue_h 5 #ifndef V8HiddenValue_h
6 #define V8HiddenValue_h 6 #define V8HiddenValue_h
7 7
8 #include "bindings/core/v8/ScopedPersistent.h" 8 #include "bindings/core/v8/ScopedPersistent.h"
9 #include "bindings/core/v8/ScriptPromiseProperties.h" 9 #include "bindings/core/v8/ScriptPromiseProperties.h"
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
(...skipping 11 matching lines...) Expand all
22 V(privateScriptObjectIsInitialized) \ 22 V(privateScriptObjectIsInitialized) \
23 V(customElementAttachedCallback) \ 23 V(customElementAttachedCallback) \
24 V(customElementAttributeChangedCallback) \ 24 V(customElementAttributeChangedCallback) \
25 V(customElementCreatedCallback) \ 25 V(customElementCreatedCallback) \
26 V(customElementDetachedCallback) \ 26 V(customElementDetachedCallback) \
27 V(customElementDocument) \ 27 V(customElementDocument) \
28 V(customElementIsInterfacePrototypeObject) \ 28 V(customElementIsInterfacePrototypeObject) \
29 V(customElementNamespaceURI) \ 29 V(customElementNamespaceURI) \
30 V(customElementTagName) \ 30 V(customElementTagName) \
31 V(customElementType) \ 31 V(customElementType) \
32 V(customElementsRegistryMap) \
32 V(callback) \ 33 V(callback) \
33 V(condition) \ 34 V(condition) \
34 V(data) \ 35 V(data) \
35 V(detail) \ 36 V(detail) \
36 V(document) \ 37 V(document) \
37 V(error) \ 38 V(error) \
38 V(event) \ 39 V(event) \
39 V(idbCursorRequest) \ 40 V(idbCursorRequest) \
40 V(internalBodyStream) \ 41 V(internalBodyStream) \
41 V(port1) \ 42 V(port1) \
(...skipping 27 matching lines...) Expand all
69 V8HiddenValue() { } 70 V8HiddenValue() { }
70 71
71 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; 72 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name;
72 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); 73 V8_HIDDEN_VALUES(V8_DECLARE_FIELD);
73 #undef V8_DECLARE_FIELD 74 #undef V8_DECLARE_FIELD
74 }; 75 };
75 76
76 } // namespace blink 77 } // namespace blink
77 78
78 #endif // V8HiddenValue_h 79 #endif // V8HiddenValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698