| Index: tools/dom/templates/html/dart2js/html_dart2js.darttemplate
|
| diff --git a/tools/dom/templates/html/dart2js/html_dart2js.darttemplate b/tools/dom/templates/html/dart2js/html_dart2js.darttemplate
|
| index bf62f8b589e1b471175f08ec9816f1542b9a5295..dab40c0a4684c3c3e235d0f8defc09e25c237a33 100644
|
| --- a/tools/dom/templates/html/dart2js/html_dart2js.darttemplate
|
| +++ b/tools/dom/templates/html/dart2js/html_dart2js.darttemplate
|
| @@ -121,6 +121,11 @@ class HtmlElement extends Element native "HTMLElement" {
|
| factory HtmlElement() { throw new UnsupportedError("Not supported"); }
|
| }
|
|
|
| +// EntryArray type was removed, so explicitly adding it to allow support for
|
| +// older Chrome versions.
|
| +// Issue #12573.
|
| +abstract class _EntryArray implements List<Entry> native "EntryArray" {}
|
| +
|
| // Support for Send/ReceivePortSync.
|
| int _getNewIsolateId() {
|
| if (JS('bool', r'!window.$dart$isolate$counter')) {
|
|
|