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

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

Issue 2025143003: [Fetch API] Request's JS wrapper should be kept alive in FetchEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698