OLD | NEW |
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 Loading... |
22 V(customElementAttachedCallback) \ | 22 V(customElementAttachedCallback) \ |
23 V(customElementAttributeChangedCallback) \ | 23 V(customElementAttributeChangedCallback) \ |
24 V(customElementCreatedCallback) \ | 24 V(customElementCreatedCallback) \ |
25 V(customElementDetachedCallback) \ | 25 V(customElementDetachedCallback) \ |
26 V(customElementDocument) \ | 26 V(customElementDocument) \ |
27 V(customElementIsInterfacePrototypeObject) \ | 27 V(customElementIsInterfacePrototypeObject) \ |
28 V(customElementNamespaceURI) \ | 28 V(customElementNamespaceURI) \ |
29 V(customElementTagName) \ | 29 V(customElementTagName) \ |
30 V(customElementType) \ | 30 V(customElementType) \ |
31 V(customElementsRegistryMap) \ | 31 V(customElementsRegistryMap) \ |
32 V(document) \ | |
33 V(error) \ | 32 V(error) \ |
34 V(event) \ | 33 V(event) \ |
35 V(idbCursorRequest) \ | 34 V(idbCursorRequest) \ |
36 V(internalBodyBuffer) \ | 35 V(internalBodyBuffer) \ |
37 V(internalBodyStream) \ | 36 V(internalBodyStream) \ |
38 V(port1) \ | 37 V(port1) \ |
39 V(port2) \ | 38 V(port2) \ |
40 V(readableStreamReaderInResponse) \ | 39 V(readableStreamReaderInResponse) \ |
41 V(requestInFetchEvent) \ | 40 V(requestInFetchEvent) \ |
42 V(state) \ | 41 V(state) \ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 V8HiddenValue() { } | 76 V8HiddenValue() { } |
78 | 77 |
79 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; | 78 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; |
80 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); | 79 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); |
81 #undef V8_DECLARE_FIELD | 80 #undef V8_DECLARE_FIELD |
82 }; | 81 }; |
83 | 82 |
84 } // namespace blink | 83 } // namespace blink |
85 | 84 |
86 #endif // V8HiddenValue_h | 85 #endif // V8HiddenValue_h |
OLD | NEW |