| 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 3d25f4253fe5f1afe65030b0ba3f6e348664ecb7..10007fde2a0f7279915c96965828df8d4db32379 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -24373,6 +24373,7 @@ class TableRowElement extends HtmlElement {
|
|
|
| TableCellElement insertCell(int index) => _insertCell(index);
|
|
|
| +
|
| // To suppress missing implicit constructor warnings.
|
| factory TableRowElement._() { throw new UnsupportedError("Not supported"); }
|
|
|
| @@ -24419,6 +24420,7 @@ class TableSectionElement extends HtmlElement {
|
|
|
| TableRowElement insertRow(int index) => _insertRow(index);
|
|
|
| +
|
| // To suppress missing implicit constructor warnings.
|
| factory TableSectionElement._() { throw new UnsupportedError("Not supported"); }
|
|
|
| @@ -26098,13 +26100,13 @@ class Url extends NativeFieldWrapperClass1 {
|
| if ((blob_OR_source_OR_stream is Blob || blob_OR_source_OR_stream == null)) {
|
| return _createObjectURL_1(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is MediaSource || blob_OR_source_OR_stream == null)) {
|
| + if ((blob_OR_source_OR_stream is MediaStream || blob_OR_source_OR_stream == null)) {
|
| return _createObjectURL_2(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is _WebKitMediaSource || blob_OR_source_OR_stream == null)) {
|
| + if ((blob_OR_source_OR_stream is MediaSource || blob_OR_source_OR_stream == null)) {
|
| return _createObjectURL_3(blob_OR_source_OR_stream);
|
| }
|
| - if ((blob_OR_source_OR_stream is MediaStream || blob_OR_source_OR_stream == null)) {
|
| + if ((blob_OR_source_OR_stream is _WebKitMediaSource || blob_OR_source_OR_stream == null)) {
|
| return _createObjectURL_4(blob_OR_source_OR_stream);
|
| }
|
| throw new ArgumentError("Incorrect number or type of arguments");
|
|
|