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

Unified Diff: Source/core/events/MutationEvent.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/MouseEvent.idl ('k') | Source/core/events/TextEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/MutationEvent.idl
diff --git a/Source/core/events/MutationEvent.idl b/Source/core/events/MutationEvent.idl
index 0aae4e31df94247d75cf26a374294aae883f39cc..41bf45791a57349d04f715aefdc465899748ecea 100644
--- a/Source/core/events/MutationEvent.idl
+++ b/Source/core/events/MutationEvent.idl
@@ -31,14 +31,14 @@ interface MutationEvent : Event {
readonly attribute DOMString attrName;
readonly attribute unsigned short attrChange;
- void initMutationEvent([Default=Undefined] optional DOMString type,
- [Default=Undefined] optional boolean canBubble,
- [Default=Undefined] optional boolean cancelable,
- [Default=Undefined] optional Node relatedNode,
- [Default=Undefined] optional DOMString prevValue,
- [Default=Undefined] optional DOMString newValue,
- [Default=Undefined] optional DOMString attrName,
- [Default=Undefined] optional unsigned short attrChange);
+ void initMutationEvent(optional DOMString type,
+ optional boolean canBubble,
+ optional boolean cancelable,
+ optional Node relatedNode,
+ optional DOMString prevValue,
+ optional DOMString newValue,
+ optional DOMString attrName,
+ optional unsigned short attrChange);
};
« no previous file with comments | « Source/core/events/MouseEvent.idl ('k') | Source/core/events/TextEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698