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

Unified Diff: Source/modules/mediasource/URLMediaSource.idl

Issue 361883004: Replace many [TreatReturnedNullStringAs=Null] with nullable DOMString (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
Index: Source/modules/mediasource/URLMediaSource.idl
diff --git a/Source/modules/mediasource/URLMediaSource.idl b/Source/modules/mediasource/URLMediaSource.idl
index af3affccc7dae49d4430c9f66ae95720dcc89f55..92c7e3775eae0a6e0c7741ed541c740fbc900946 100644
--- a/Source/modules/mediasource/URLMediaSource.idl
+++ b/Source/modules/mediasource/URLMediaSource.idl
@@ -33,5 +33,5 @@
[
TypeChecking=Interface,
] partial interface URL {
- [CallWith=ExecutionContext, TreatReturnedNullStringAs=Null] static DOMString createObjectURL(MediaSource source);
+ [CallWith=ExecutionContext] static DOMString? createObjectURL(MediaSource source);
};

Powered by Google App Engine
This is Rietveld 408576698