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

Unified Diff: Source/core/html/HTMLCanvasElement.idl

Issue 1257253004: [HTMLCanvasElement.toBlob] Default callback version without scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changes based on second code reviews 2 Created 5 years, 4 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
Index: Source/core/html/HTMLCanvasElement.idl
diff --git a/Source/core/html/HTMLCanvasElement.idl b/Source/core/html/HTMLCanvasElement.idl
index 57ead8bcb8e8971c58665b2d167f008b310e5aee..4e7c0cf150b8e482cef42fdc4dee1e51ec4a137f 100644
--- a/Source/core/html/HTMLCanvasElement.idl
+++ b/Source/core/html/HTMLCanvasElement.idl
@@ -26,7 +26,8 @@
// https://html.spec.whatwg.org/#the-canvas-element
-interface HTMLCanvasElement : HTMLElement {
+interface HTMLCanvasElement : HTMLElement
+{
// FIXME: width and height should be unsigned long.
attribute long width;
attribute long height;
@@ -51,4 +52,6 @@ interface HTMLCanvasElement : HTMLElement {
// only one extra argument is actually used.
// FIXME: type should not have a default value.
[RaisesException] DOMString toDataURL(optional DOMString type = null, optional any arguments);
+
+ [RaisesException, RuntimeEnabled=ExperimentalCanvasFeatures] void toBlob(FileCallback? _callback, optional DOMString type = null, optional any arguments);
Justin Novosad 2015/08/21 18:53:44 Why the '_' before callback?
xlai (Olivia) 2015/08/27 18:41:50 Based on discussion with Justin on Aug 21, "_" app
};

Powered by Google App Engine
This is Rietveld 408576698