| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index d02574c021a53c5d27e6020966f9ae94184d56aa..483eb0669d07c0b47ab357d283a439ce3cbacfb5 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -31073,12 +31073,12 @@ class Url extends NativeFieldWrapperClass2 implements UrlUtils {
|
| if ((blob_OR_source_OR_stream is Blob || blob_OR_source_OR_stream == null)) {
|
| return _blink.BlinkURL.createObjectURL_Callback_Blob(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is MediaStream)) {
|
| - return _blink.BlinkURL.createObjectURL_Callback_MediaStream(blob_OR_source_OR_stream);
|
| - }
|
| if ((blob_OR_source_OR_stream is MediaSource)) {
|
| return _blink.BlinkURL.createObjectURL_Callback_MediaSource(blob_OR_source_OR_stream);
|
| }
|
| + if ((blob_OR_source_OR_stream is MediaStream)) {
|
| + return _blink.BlinkURL.createObjectURL_Callback_MediaStream(blob_OR_source_OR_stream);
|
| + }
|
| throw new ArgumentError("Incorrect number or type of arguments");
|
| }
|
|
|
|
|