Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Unified Diff: tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate

Issue 1753813005: Fixed createImageData and added RequestAnimationFrameCallback for compat (Closed) Base URL: git@github.com:dart-lang/sdk.git@integration
Patch Set: cherry-pick integration fix to master Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698