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

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

Issue 2023213002: binding: Makes XxxObserverCallback use V8PrivateProperty instead of V8HiddenValue. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 V(customElementAttachedCallback) \ 21 V(customElementAttachedCallback) \
22 V(customElementAttributeChangedCallback) \ 22 V(customElementAttributeChangedCallback) \
23 V(customElementCreatedCallback) \ 23 V(customElementCreatedCallback) \
24 V(customElementDetachedCallback) \ 24 V(customElementDetachedCallback) \
25 V(customElementDocument) \ 25 V(customElementDocument) \
26 V(customElementIsInterfacePrototypeObject) \ 26 V(customElementIsInterfacePrototypeObject) \
27 V(customElementNamespaceURI) \ 27 V(customElementNamespaceURI) \
28 V(customElementTagName) \ 28 V(customElementTagName) \
29 V(customElementType) \ 29 V(customElementType) \
30 V(customElementsRegistryMap) \ 30 V(customElementsRegistryMap) \
31 V(callback) \
32 V(condition) \ 31 V(condition) \
33 V(detail) \ 32 V(detail) \
34 V(document) \ 33 V(document) \
35 V(error) \ 34 V(error) \
36 V(event) \ 35 V(event) \
37 V(idbCursorRequest) \ 36 V(idbCursorRequest) \
38 V(internalBodyBuffer) \ 37 V(internalBodyBuffer) \
39 V(internalBodyStream) \ 38 V(internalBodyStream) \
40 V(port1) \ 39 V(port1) \
41 V(port2) \ 40 V(port2) \
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 V8HiddenValue() { } 77 V8HiddenValue() { }
79 78
80 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name; 79 #define V8_DECLARE_FIELD(name) ScopedPersistent<v8::String> m_##name;
81 V8_HIDDEN_VALUES(V8_DECLARE_FIELD); 80 V8_HIDDEN_VALUES(V8_DECLARE_FIELD);
82 #undef V8_DECLARE_FIELD 81 #undef V8_DECLARE_FIELD
83 }; 82 };
84 83
85 } // namespace blink 84 } // namespace blink
86 85
87 #endif // V8HiddenValue_h 86 #endif // V8HiddenValue_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698