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

Unified Diff: Source/core/events/CustomEvent.idl

Issue 337343002: IDL: make optional arguments (without default) explicit sometimes Base URL: https://chromium.googlesource.com/chromium/blink.git@idl-default-arguments-next
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/events/CompositionEvent.idl ('k') | Source/core/events/Event.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/CustomEvent.idl
diff --git a/Source/core/events/CustomEvent.idl b/Source/core/events/CustomEvent.idl
index 4ad348b3126903515d4be1c39d1f68abec2aa6f2..bd9474e6ae5f6281bca68a6071e96943c0e9362e 100644
--- a/Source/core/events/CustomEvent.idl
+++ b/Source/core/events/CustomEvent.idl
@@ -28,8 +28,8 @@
] interface CustomEvent : Event {
[Custom=Getter, InitializedByEventConstructor] readonly attribute any detail;
- [Custom] void initCustomEvent([Default=Undefined] optional DOMString typeArg,
- [Default=Undefined] optional boolean canBubbleArg,
- [Default=Undefined] optional boolean cancelableArg,
- [Default=Undefined] optional any detailArg);
+ [Custom] void initCustomEvent(optional DOMString typeArg,
+ optional boolean canBubbleArg,
+ optional boolean cancelableArg,
+ optional any detailArg);
};
« no previous file with comments | « Source/core/events/CompositionEvent.idl ('k') | Source/core/events/Event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698