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

Unified Diff: client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart

Issue 8591026: Roll DOM APIs forward on IDL & update Frog DOM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Switch frog to pull dart/client/dom/frog/frog_dom.dart. Created 9 years, 1 month 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/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart b/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
index f24df66892c2dda2d24ac3017d274fcce3b88b25..c7b5a0eb1e2fa29883b19e0ca91b82b9dda0ef7a 100644
--- a/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
@@ -570,27 +570,6 @@ class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
static void _setFillColor_5(receiver, c_OR_color_OR_grayLevel_OR_r, alpha_OR_g_OR_m, b_OR_y, a_OR_k) native;
static void _setFillColor_6(receiver, c_OR_color_OR_grayLevel_OR_r, alpha_OR_g_OR_m, b_OR_y, a_OR_k, a) native;
- void setFillStyle(var color_OR_gradient_OR_pattern) {
- if (color_OR_gradient_OR_pattern is String) {
- _setFillStyle(this, color_OR_gradient_OR_pattern);
- return;
- } else {
- if (color_OR_gradient_OR_pattern is CanvasGradient) {
- _setFillStyle_2(this, color_OR_gradient_OR_pattern);
- return;
- } else {
- if (color_OR_gradient_OR_pattern is CanvasPattern) {
- _setFillStyle_3(this, color_OR_gradient_OR_pattern);
- return;
- }
- }
- }
- throw "Incorrect number or type of arguments";
- }
- static void _setFillStyle(receiver, color_OR_gradient_OR_pattern) native;
- static void _setFillStyle_2(receiver, color_OR_gradient_OR_pattern) native;
- static void _setFillStyle_3(receiver, color_OR_gradient_OR_pattern) native;
-
void setLineCap(String cap) {
_setLineCap(this, cap);
return;
@@ -751,27 +730,6 @@ class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
static void _setStrokeColor_5(receiver, c_OR_color_OR_grayLevel_OR_r, alpha_OR_g_OR_m, b_OR_y, a_OR_k) native;
static void _setStrokeColor_6(receiver, c_OR_color_OR_grayLevel_OR_r, alpha_OR_g_OR_m, b_OR_y, a_OR_k, a) native;
- void setStrokeStyle(var color_OR_gradient_OR_pattern) {
- if (color_OR_gradient_OR_pattern is String) {
- _setStrokeStyle(this, color_OR_gradient_OR_pattern);
- return;
- } else {
- if (color_OR_gradient_OR_pattern is CanvasGradient) {
- _setStrokeStyle_2(this, color_OR_gradient_OR_pattern);
- return;
- } else {
- if (color_OR_gradient_OR_pattern is CanvasPattern) {
- _setStrokeStyle_3(this, color_OR_gradient_OR_pattern);
- return;
- }
- }
- }
- throw "Incorrect number or type of arguments";
- }
- static void _setStrokeStyle(receiver, color_OR_gradient_OR_pattern) native;
- static void _setStrokeStyle_2(receiver, color_OR_gradient_OR_pattern) native;
- static void _setStrokeStyle_3(receiver, color_OR_gradient_OR_pattern) native;
-
void setTransform(num m11, num m12, num m21, num m22, num dx, num dy) {
_setTransform(this, m11, m12, m21, m22, dx, dy);
return;

Powered by Google App Engine
This is Rietveld 408576698