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

Unified Diff: core/html/ImageData.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 9 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 | « core/html/HTMLVideoElement.idl ('k') | core/html/MediaController.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/ImageData.idl
diff --git a/core/html/ImageData.idl b/core/html/ImageData.idl
index 44f6977b65333800da7c0e26e96e8a208b2439f4..152a63d2f8bc5f51dac26acb962c8248e52c0f15 100644
--- a/core/html/ImageData.idl
+++ b/core/html/ImageData.idl
@@ -29,16 +29,14 @@
// https://html.spec.whatwg.org/#dom-imagedata
[
- TypeChecking=Interface,
Constructor(unsigned long sw, unsigned long sh),
Constructor(Uint8ClampedArray data, unsigned long sw, optional unsigned long sh),
Exposed=(Window,Worker),
RaisesException=Constructor,
GarbageCollected,
] interface ImageData {
- // TODO(philipj): width/height should be unsigned long.
- readonly attribute long width;
- readonly attribute long height;
+ readonly attribute unsigned long width;
+ readonly attribute unsigned long height;
// TODO(philipj): Expose data.
// FIXMEDART: Uncomment - we need this property.
readonly attribute Uint8ClampedArray data;
« no previous file with comments | « core/html/HTMLVideoElement.idl ('k') | core/html/MediaController.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698