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

Unified Diff: client/html/generated/html/frog/CanvasRenderingContext2D.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: client/html/generated/html/frog/CanvasRenderingContext2D.dart
diff --git a/client/html/generated/html/frog/CanvasRenderingContext2D.dart b/client/html/generated/html/frog/CanvasRenderingContext2D.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c7abf6942ee9d6f3db177c691e7d9917066b53be
--- /dev/null
+++ b/client/html/generated/html/frog/CanvasRenderingContext2D.dart
@@ -0,0 +1,125 @@
+
+class _CanvasRenderingContext2DImpl extends _CanvasRenderingContextImpl implements CanvasRenderingContext2D native "*CanvasRenderingContext2D" {
+
+ Dynamic fillStyle;
+
+ String font;
+
+ num globalAlpha;
+
+ String globalCompositeOperation;
+
+ String lineCap;
+
+ String lineJoin;
+
+ num lineWidth;
+
+ num miterLimit;
+
+ num shadowBlur;
+
+ String shadowColor;
+
+ num shadowOffsetX;
+
+ num shadowOffsetY;
+
+ Dynamic strokeStyle;
+
+ String textAlign;
+
+ String textBaseline;
+
+ List webkitLineDash;
+
+ num webkitLineDashOffset;
+
+ void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticlockwise) native;
+
+ void arcTo(num x1, num y1, num x2, num y2, num radius) native;
+
+ void beginPath() native;
+
+ void bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) native;
+
+ void clearRect(num x, num y, num width, num height) native;
+
+ void clearShadow() native;
+
+ void clip() native;
+
+ void closePath() native;
+
+ _ImageDataImpl createImageData(var imagedata_OR_sw, [num sh = null]) native;
+
+ _CanvasGradientImpl createLinearGradient(num x0, num y0, num x1, num y1) native;
+
+ _CanvasPatternImpl createPattern(var canvas_OR_image, String repetitionType) native;
+
+ _CanvasGradientImpl createRadialGradient(num x0, num y0, num r0, num x1, num y1, num r1) native;
+
+ void drawImage(var canvas_OR_image_OR_video, num sx_OR_x, num sy_OR_y, [num sw_OR_width = null, num height_OR_sh = null, num dx = null, num dy = null, num dw = null, num dh = null]) native;
+
+ void drawImageFromRect(_ImageElementImpl image, [num sx = null, num sy = null, num sw = null, num sh = null, num dx = null, num dy = null, num dw = null, num dh = null, String compositeOperation = null]) native;
+
+ void fill() native;
+
+ void fillRect(num x, num y, num width, num height) native;
+
+ void fillText(String text, num x, num y, [num maxWidth = null]) native;
+
+ _ImageDataImpl getImageData(num sx, num sy, num sw, num sh) native;
+
+ bool isPointInPath(num x, num y) native;
+
+ void lineTo(num x, num y) native;
+
+ _TextMetricsImpl measureText(String text) native;
+
+ void moveTo(num x, num y) native;
+
+ void putImageData(_ImageDataImpl imagedata, num dx, num dy, [num dirtyX = null, num dirtyY = null, num dirtyWidth = null, num dirtyHeight = null]) native;
+
+ void quadraticCurveTo(num cpx, num cpy, num x, num y) native;
+
+ void rect(num x, num y, num width, num height) native;
+
+ void restore() native;
+
+ void rotate(num angle) native;
+
+ void save() native;
+
+ void scale(num sx, num sy) native;
+
+ void setAlpha(num alpha) native;
+
+ void setCompositeOperation(String compositeOperation) native;
+
+ void setFillColor(var c_OR_color_OR_grayLevel_OR_r, [num alpha_OR_g_OR_m = null, num b_OR_y = null, num a_OR_k = null, num a = null]) native;
+
+ void setLineCap(String cap) native;
+
+ void setLineJoin(String join) native;
+
+ void setLineWidth(num width) native;
+
+ void setMiterLimit(num limit) native;
+
+ void setShadow(num width, num height, num blur, [var c_OR_color_OR_grayLevel_OR_r = null, num alpha_OR_g_OR_m = null, num b_OR_y = null, num a_OR_k = null, num a = null]) native;
+
+ void setStrokeColor(var c_OR_color_OR_grayLevel_OR_r, [num alpha_OR_g_OR_m = null, num b_OR_y = null, num a_OR_k = null, num a = null]) native;
+
+ void setTransform(num m11, num m12, num m21, num m22, num dx, num dy) native;
+
+ void stroke() native;
+
+ void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) native;
+
+ void strokeText(String text, num x, num y, [num maxWidth = null]) native;
+
+ void transform(num m11, num m12, num m21, num m22, num dx, num dy) native;
+
+ void translate(num tx, num ty) native;
+}

Powered by Google App Engine
This is Rietveld 408576698