| 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 21 matching lines...) Expand all Loading... |
| 32 V(detail) \ | 32 V(detail) \ |
| 33 V(document) \ | 33 V(document) \ |
| 34 V(error) \ | 34 V(error) \ |
| 35 V(event) \ | 35 V(event) \ |
| 36 V(idbCursorRequest) \ | 36 V(idbCursorRequest) \ |
| 37 V(internalBodyBuffer) \ | 37 V(internalBodyBuffer) \ |
| 38 V(internalBodyStream) \ | 38 V(internalBodyStream) \ |
| 39 V(port1) \ | 39 V(port1) \ |
| 40 V(port2) \ | 40 V(port2) \ |
| 41 V(readableStreamReaderInResponse) \ | 41 V(readableStreamReaderInResponse) \ |
| 42 V(requestInFetchEvent) \ |
| 42 V(state) \ | 43 V(state) \ |
| 43 V(testInterfaces) \ | 44 V(testInterfaces) \ |
| 44 V(thenableHiddenPromise) \ | 45 V(thenableHiddenPromise) \ |
| 45 V(toStringString) \ | 46 V(toStringString) \ |
| 46 V(injectedScriptNative) \ | 47 V(injectedScriptNative) \ |
| 47 V(webgl2DTextures) \ | 48 V(webgl2DTextures) \ |
| 48 V(webgl2DArrayTextures) \ | 49 V(webgl2DArrayTextures) \ |
| 49 V(webgl3DTextures) \ | 50 V(webgl3DTextures) \ |
| 50 V(webglAttachments) \ | 51 V(webglAttachments) \ |
| 51 V(webglBuffers) \ | 52 V(webglBuffers) \ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 77 V8HiddenValue() { } | 78 V8HiddenValue() { } |
| 78 | 79 |
| 79 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; | 80 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; |
| 80 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); | 81 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); |
| 81 #undef V8_DECLARE_FIELD | 82 #undef V8_DECLARE_FIELD |
| 82 }; | 83 }; |
| 83 | 84 |
| 84 } // namespace blink | 85 } // namespace blink |
| 85 | 86 |
| 86 #endif // V8HiddenValue_h | 87 #endif // V8HiddenValue_h |
| OLD | NEW |