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

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

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge Created 4 years 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: third_party/WebKit/Source/core/html/HTMLCanvasElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLCanvasElement.idl b/third_party/WebKit/Source/core/html/HTMLCanvasElement.idl
index f2aa7983cc2b4642a326da23e8f81382a0a3666c..f5fb44d57dc30c10518be6b3cfe3dd53b878ae8c 100644
--- a/third_party/WebKit/Source/core/html/HTMLCanvasElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLCanvasElement.idl
@@ -32,13 +32,13 @@ interface HTMLCanvasElement : HTMLElement
// interface in HTMLCanvasElementModule.idl
// FIXME: width and height should be unsigned long.
- [RaisesException=Setter, CEReactions] attribute long width;
- [RaisesException=Setter, CEReactions] attribute long height;
+ [Measure, RaisesException=Setter, CEReactions] attribute long width;
+ [Measure, RaisesException=Setter, CEReactions] attribute long height;
// Note: The arguments argument is variadic in the spec, but not here as
// 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] void toBlob(BlobCallback _callback, optional DOMString type = null, optional any arguments);
+ [Measure, RaisesException] void toBlob(BlobCallback _callback, optional DOMString type = null, optional any arguments);
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLButtonElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLContentElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698