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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h

Issue 2031113002: IndexedDB Observers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: expected files updated 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
index c3208255792f4ae98fe91aaa33706770318c587a..d4cbee49ab21718157298878d289ad27783140ab 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
@@ -21,13 +21,14 @@ class ScriptState;
class ScriptWrappable;
// Apply |X| for each pair of (InterfaceName, PrivateKeyName).
-#define V8_PRIVATE_PROPERTY_FOR_EACH(X) \
- X(CustomEvent, Detail) \
- X(MessageEvent, CachedData) \
+#define V8_PRIVATE_PROPERTY_FOR_EACH(X) \
+ X(CustomEvent, Detail) \
+ X(MessageEvent, CachedData) \
X(PrivateScriptRunner, IsInitialized) \
- X(IntersectionObserver, Callback) \
- X(MutationObserver, Callback) \
- X(PerformanceObserver, Callback) \
+ X(IntersectionObserver, Callback) \
+ X(IDBObserver, Callback) \
+ X(MutationObserver, Callback) \
+ X(PerformanceObserver, Callback) \
X(V8NodeFilterCondition, Filter)
// The getter's name for a private property.

Powered by Google App Engine
This is Rietveld 408576698