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

Unified Diff: Source/modules/mediastream/RTCStatsResponse.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/modules/mediastream/RTCPeerConnection.idl ('k') | Source/modules/notifications/Notification.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCStatsResponse.idl
diff --git a/Source/modules/mediastream/RTCStatsResponse.idl b/Source/modules/mediastream/RTCStatsResponse.idl
index 69fd2392855faef5558a58d3a8ab86a44ddb6ae3..9ef794ea63c390576758773fe6bf8b8c8f669d6e 100644
--- a/Source/modules/mediastream/RTCStatsResponse.idl
+++ b/Source/modules/mediastream/RTCStatsResponse.idl
@@ -27,6 +27,6 @@
NoInterfaceObject
] interface RTCStatsResponse {
sequence<RTCStatsReport> result();
- RTCStatsReport namedItem([Default=Undefined] optional DOMString name);
- [NotEnumerable, ImplementedAs=namedItem] getter RTCStatsReport ([Default=Undefined] optional DOMString name);
+ RTCStatsReport namedItem(optional DOMString name);
+ [NotEnumerable, ImplementedAs=namedItem] getter RTCStatsReport (optional DOMString name);
};
« no previous file with comments | « Source/modules/mediastream/RTCPeerConnection.idl ('k') | Source/modules/notifications/Notification.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698