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

Unified Diff: Source/core/events/HashChangeEvent.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/Event.idl ('k') | Source/core/events/KeyboardEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/HashChangeEvent.idl
diff --git a/Source/core/events/HashChangeEvent.idl b/Source/core/events/HashChangeEvent.idl
index e5101b8d99186dc47978d81a5b0c5457a256b342..b154776f63f2a5c105b1b068f5ac6d5a164b149f 100644
--- a/Source/core/events/HashChangeEvent.idl
+++ b/Source/core/events/HashChangeEvent.idl
@@ -21,11 +21,11 @@
[
EventConstructor,
] interface HashChangeEvent : Event {
- void initHashChangeEvent([Default=Undefined] optional DOMString type,
- [Default=Undefined] optional boolean canBubble,
- [Default=Undefined] optional boolean cancelable,
- [Default=Undefined] optional DOMString oldURL,
- [Default=Undefined] optional DOMString newURL);
+ void initHashChangeEvent(optional DOMString type,
+ optional boolean canBubble,
+ optional boolean cancelable,
+ optional DOMString oldURL,
+ optional DOMString newURL);
[InitializedByEventConstructor] readonly attribute DOMString oldURL;
[InitializedByEventConstructor] readonly attribute DOMString newURL;
};
« no previous file with comments | « Source/core/events/Event.idl ('k') | Source/core/events/KeyboardEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698