Chromium Code Reviews| Index: tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate |
| diff --git a/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate b/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate |
| index cd5fa3cb6b95ca0c255f90b522410e0065033ae1..76efb86228049dcc454c3198effb9f2ee27165a5 100644 |
| --- a/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate |
| +++ b/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate |
| @@ -15,7 +15,7 @@ $!MEMBERS |
| @DocsEditable() |
| ImageData createImageDataFromImageData(ImageData imagedata) => |
| $if DART2JS |
| - JS('ImageData', '#.createImageData(#, #)', this, imagedata); |
| + JS('ImageData', '#.createImageData(#, #, null)', this, imagedata); |
|
Jacob
2016/03/02 22:19:05
this looks unrelated. did you intend to check in t
|
| $else |
| this.createImageData(imagedata); |
| $endif |