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

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

Issue 2774233007: [Bindings] Move ScriptPromiseProperties from V8HiddenValue to V8PrivateProperty (Closed)
Patch Set: workaround Created 3 years, 8 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/ScriptPromiseProperties.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperties.h b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperties.h
index 4cc9103fe362a7707e4429a7959d122affd78cf5..3da0172fa0f4b62ada1c6b1ed882706f4ba274e7 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperties.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromiseProperties.h
@@ -6,13 +6,13 @@
#define ScriptPromiseProperties_h
// See ScriptPromiseProperty.h
-#define SCRIPT_PROMISE_PROPERTIES(P, ...) \
- P(Ready##__VA_ARGS__) \
- P(Closed##__VA_ARGS__) \
- P(Finished##__VA_ARGS__) \
- P(Loaded##__VA_ARGS__) \
- P(Released##__VA_ARGS__) \
- P(UserChoice##__VA_ARGS__) \
- P(PreloadResponse##__VA_ARGS__)
+#define SCRIPT_PROMISE_PROPERTIES(P, ...) \
+ P(ScriptPromise, Ready##__VA_ARGS__) \
+ P(ScriptPromise, Closed##__VA_ARGS__) \
+ P(ScriptPromise, Finished##__VA_ARGS__) \
+ P(ScriptPromise, Loaded##__VA_ARGS__) \
+ P(ScriptPromise, Released##__VA_ARGS__) \
+ P(ScriptPromise, UserChoice##__VA_ARGS__) \
+ P(ScriptPromise, PreloadResponse##__VA_ARGS__)
#endif // ScriptPromiseProperties_h

Powered by Google App Engine
This is Rietveld 408576698