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 15 matching lines...) Expand all Loading... |
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(callback) \ | 32 V(callback) \ |
33 V(condition) \ | 33 V(condition) \ |
34 V(data) \ | 34 V(data) \ |
35 V(detail) \ | 35 V(detail) \ |
36 V(document) \ | |
37 V(error) \ | 36 V(error) \ |
38 V(event) \ | 37 V(event) \ |
39 V(idbCursorRequest) \ | 38 V(idbCursorRequest) \ |
40 V(port1) \ | 39 V(port1) \ |
41 V(port2) \ | 40 V(port2) \ |
42 V(readableStreamReaderInResponse) \ | 41 V(readableStreamReaderInResponse) \ |
43 V(state) \ | 42 V(state) \ |
44 V(stringData) \ | 43 V(stringData) \ |
45 V(testInterfaces) \ | 44 V(testInterfaces) \ |
46 V(thenableHiddenPromise) \ | 45 V(thenableHiddenPromise) \ |
(...skipping 21 matching lines...) Expand all Loading... |
68 V8HiddenValue() { } | 67 V8HiddenValue() { } |
69 | 68 |
70 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; | 69 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; |
71 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); | 70 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); |
72 #undef V8_DECLARE_FIELD | 71 #undef V8_DECLARE_FIELD |
73 }; | 72 }; |
74 | 73 |
75 } // namespace blink | 74 } // namespace blink |
76 | 75 |
77 #endif // V8HiddenValue_h | 76 #endif // V8HiddenValue_h |
OLD | NEW |