Index: third_party/WebKit/Source/core/events/PromiseRejectionEventInit.idl |
diff --git a/third_party/WebKit/Source/core/events/PromiseRejectionEventInit.idl b/third_party/WebKit/Source/core/events/PromiseRejectionEventInit.idl |
index 0f5527a5919696541996604b686d490a7760962d..caa0e7e1326fc0ec1b2f1b7819502e9f57915551 100644 |
--- a/third_party/WebKit/Source/core/events/PromiseRejectionEventInit.idl |
+++ b/third_party/WebKit/Source/core/events/PromiseRejectionEventInit.idl |
@@ -7,6 +7,6 @@ |
[ |
RuntimeEnabled=PromiseRejectionEvent, |
] dictionary PromiseRejectionEventInit : EventInit { |
- required Promise<any>? promise; |
- any reason = null; |
+ required Promise<any> promise; |
+ any reason; |
}; |