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

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

Powered by Google App Engine
This is Rietveld 408576698