Chromium Code Reviews| Index: tools/dom/templates/html/impl/impl_Window.darttemplate |
| diff --git a/tools/dom/templates/html/impl/impl_Window.darttemplate b/tools/dom/templates/html/impl/impl_Window.darttemplate |
| index 896e2040bcd084c7d7adfbb7e1333d10a925cf75..0a6bd46f2d4cbbd8b317dad6fb12373055427137 100644 |
| --- a/tools/dom/templates/html/impl/impl_Window.darttemplate |
| +++ b/tools/dom/templates/html/impl/impl_Window.darttemplate |
| @@ -47,10 +47,10 @@ $if DART2JS |
| */ |
| Document get document => JS('Document', '#.document', this); |
| - WindowBase _open2(url, name) => JS('Window', '#.open(#,#)', this, url, name); |
| + WindowBase _open2(url, name) => JS('Window|Null', '#.open(#,#)', this, url, name); |
|
sra1
2015/12/21 21:25:19
break line
Alan Knight
2015/12/21 21:27:09
Done.
|
| WindowBase _open3(url, name, options) => |
| - JS('Window', '#.open(#,#,#)', this, url, name, options); |
| + JS('Window|Null', '#.open(#,#,#)', this, url, name, options); |
| /** |
| * Opens a new window. |