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

Side by Side Diff: core/html/canvas/CanvasRenderingContext2D.idl

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « core/html/canvas/CanvasRenderingContext.idl ('k') | core/html/canvas/DataView.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 [RaisesException] void drawImage(HTMLImageElement? image, float x, float y); 120 [RaisesException] void drawImage(HTMLImageElement? image, float x, float y);
121 [RaisesException] void drawImage(HTMLImageElement? image, float x, float y, float width, float height); 121 [RaisesException] void drawImage(HTMLImageElement? image, float x, float y, float width, float height);
122 [RaisesException] void drawImage(HTMLImageElement? image, float sx, float sy , float sw, float sh, float dx, float dy, float dw, float dh); 122 [RaisesException] void drawImage(HTMLImageElement? image, float sx, float sy , float sw, float sh, float dx, float dy, float dw, float dh);
123 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float x, float y ); 123 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float x, float y );
124 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float x, float y , float width, float height); 124 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float x, float y , float width, float height);
125 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh); 125 [RaisesException] void drawImage(HTMLCanvasElement? canvas, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh);
126 [RaisesException] void drawImage(HTMLVideoElement? video, float x, float y); 126 [RaisesException] void drawImage(HTMLVideoElement? video, float x, float y);
127 [RaisesException] void drawImage(HTMLVideoElement? video, float x, float y, float width, float height); 127 [RaisesException] void drawImage(HTMLVideoElement? video, float x, float y, float width, float height);
128 [RaisesException] void drawImage(HTMLVideoElement? video, float sx, float sy , float sw, float sh, float dx, float dy, float dw, float dh); 128 [RaisesException] void drawImage(HTMLVideoElement? video, float sx, float sy , float sw, float sh, float dx, float dy, float dw, float dh);
129 [EnabledAtRuntime=experimentalCanvasFeatures, RaisesException] void drawImag e(ImageBitmap? imageBitmap, float x, float y);
130 [EnabledAtRuntime=experimentalCanvasFeatures, RaisesException] void drawImag e(ImageBitmap? imageBitmap, float x, float y, float width, float height);
131 [EnabledAtRuntime=experimentalCanvasFeatures, RaisesException] void drawImag e(ImageBitmap? imageBitmap, float sx, float sy, float sw, float sh, float dx, fl oat dy, float dw, float dh);
129 132
130 void drawImageFromRect(HTMLImageElement image, 133 void drawImageFromRect(HTMLImageElement image,
131 optional float sx, optional float sy, optional float sw, optional float sh, 134 optional float sx, optional float sy, optional float sw, optional float sh,
132 optional float dx, optional float dy, optional float dw, optional float dh, 135 optional float dx, optional float dy, optional float dw, optional float dh,
133 optional DOMString compositeOperation); 136 optional DOMString compositeOperation);
134 137
135 void setShadow(float width, float height, float blur, [StrictTypeChecking] o ptional DOMString color, optional float alpha); 138 void setShadow(float width, float height, float blur, [StrictTypeChecking] o ptional DOMString color, optional float alpha);
136 void setShadow(float width, float height, float blur, float grayLevel, optio nal float alpha); 139 void setShadow(float width, float height, float blur, float grayLevel, optio nal float alpha);
137 void setShadow(float width, float height, float blur, float r, float g, floa t b, float a); 140 void setShadow(float width, float height, float blur, float r, float g, floa t b, float a);
138 void setShadow(float width, float height, float blur, float c, float m, floa t y, float k, float a); 141 void setShadow(float width, float height, float blur, float c, float m, floa t y, float k, float a);
(...skipping 17 matching lines...) Expand all
156 159
157 [RaisesException] ImageData webkitGetImageDataHD(float sx, float sy, float s w, float sh); 160 [RaisesException] ImageData webkitGetImageDataHD(float sx, float sy, float s w, float sh);
158 161
159 readonly attribute float webkitBackingStorePixelRatio; 162 readonly attribute float webkitBackingStorePixelRatio;
160 163
161 attribute boolean webkitImageSmoothingEnabled; 164 attribute boolean webkitImageSmoothingEnabled;
162 165
163 [EnabledAtRuntime=experimentalCanvasFeatures] Canvas2DContextAttributes getC ontextAttributes(); 166 [EnabledAtRuntime=experimentalCanvasFeatures] Canvas2DContextAttributes getC ontextAttributes();
164 }; 167 };
165 168
OLDNEW
« no previous file with comments | « core/html/canvas/CanvasRenderingContext.idl ('k') | core/html/canvas/DataView.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698