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

Side by Side Diff: third_party/WebKit/Source/platform/bindings/V8PrivateProperty.h

Issue 2873453004: Shape Detection: add SaveSameObject idl to SameObject annotations (Closed)
Patch Set: Removed [SaveSameObject] from members where it doesn't make sense Created 3 years, 7 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 | « third_party/WebKit/Source/modules/shapedetection/DetectedText.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 V8PrivateProperty_h 5 #ifndef V8PrivateProperty_h
6 #define V8PrivateProperty_h 6 #define V8PrivateProperty_h
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "platform/PlatformExport.h" 10 #include "platform/PlatformExport.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 X(InternalBody, Stream) \ 48 X(InternalBody, Stream) \
49 X(IntersectionObserver, Callback) \ 49 X(IntersectionObserver, Callback) \
50 X(LazyEventListener, ToString) \ 50 X(LazyEventListener, ToString) \
51 X(MessageChannel, Port1) \ 51 X(MessageChannel, Port1) \
52 X(MessageChannel, Port2) \ 52 X(MessageChannel, Port2) \
53 X(MessageEvent, CachedData) \ 53 X(MessageEvent, CachedData) \
54 X(MutationObserver, Callback) \ 54 X(MutationObserver, Callback) \
55 X(NamedConstructor, Initialized) \ 55 X(NamedConstructor, Initialized) \
56 X(PerformanceObserver, Callback) \ 56 X(PerformanceObserver, Callback) \
57 X(PopStateEvent, State) \ 57 X(PopStateEvent, State) \
58 X(SameObject, DetectedBarcodeCornerPoints) \
59 X(SameObject, DetectedFaceLandmarks) \
58 X(SameObject, NotificationActions) \ 60 X(SameObject, NotificationActions) \
59 X(SameObject, NotificationData) \ 61 X(SameObject, NotificationData) \
60 X(SameObject, NotificationVibrate) \ 62 X(SameObject, NotificationVibrate) \
61 X(SameObject, PerformanceLongTaskTimingAttribution) \ 63 X(SameObject, PerformanceLongTaskTimingAttribution) \
62 SCRIPT_PROMISE_PROPERTIES(X, Promise) \ 64 SCRIPT_PROMISE_PROPERTIES(X, Promise) \
63 SCRIPT_PROMISE_PROPERTIES(X, Resolver) 65 SCRIPT_PROMISE_PROPERTIES(X, Resolver)
64 66
65 // The getter's name for a private property. 67 // The getter's name for a private property.
66 #define V8_PRIVATE_PROPERTY_GETTER_NAME(InterfaceName, PrivateKeyName) \ 68 #define V8_PRIVATE_PROPERTY_GETTER_NAME(InterfaceName, PrivateKeyName) \
67 Get##InterfaceName##PrivateKeyName 69 Get##InterfaceName##PrivateKeyName
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 // TODO(peria): Do not use this specialized hack for 215 // TODO(peria): Do not use this specialized hack for
214 // Window#DocumentCachedAccessor. This is required to put v8::Private key in 216 // Window#DocumentCachedAccessor. This is required to put v8::Private key in
215 // a snapshot, and it cannot be a v8::Eternal<> due to V8 serializer's 217 // a snapshot, and it cannot be a v8::Eternal<> due to V8 serializer's
216 // requirement. 218 // requirement.
217 ScopedPersistent<v8::Private> symbol_window_document_cached_accessor_; 219 ScopedPersistent<v8::Private> symbol_window_document_cached_accessor_;
218 }; 220 };
219 221
220 } // namespace blink 222 } // namespace blink
221 223
222 #endif // V8PrivateProperty_h 224 #endif // V8PrivateProperty_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/shapedetection/DetectedText.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698