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

Unified Diff: Source/core/plugins/MimeTypeArray.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/inspector/JavaScriptCallFrame.idl ('k') | Source/core/plugins/Plugin.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/plugins/MimeTypeArray.idl
diff --git a/Source/core/plugins/MimeTypeArray.idl b/Source/core/plugins/MimeTypeArray.idl
index 0a33adace1fede82345feb447bb9b90f321b9383..7ccd390a2c9c65391782f643ec8508fe2a4643d0 100644
--- a/Source/core/plugins/MimeTypeArray.idl
+++ b/Source/core/plugins/MimeTypeArray.idl
@@ -23,8 +23,8 @@
ImplementedAs=DOMMimeTypeArray
] interface MimeTypeArray {
readonly attribute unsigned long length;
- getter MimeType item([Default=Undefined] optional unsigned long index);
- MimeType namedItem([Default=Undefined] optional DOMString name);
- [NotEnumerable, ImplementedAs=namedItem] getter MimeType ([Default=Undefined] optional DOMString name);
+ getter MimeType item(optional unsigned long index);
+ MimeType namedItem(optional DOMString name);
+ [NotEnumerable, ImplementedAs=namedItem] getter MimeType (optional DOMString name);
};
« no previous file with comments | « Source/core/inspector/JavaScriptCallFrame.idl ('k') | Source/core/plugins/Plugin.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698