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

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

Issue 8569017: Generate constructors for frog DOM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Refresh the single file version 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 f51eaccccc12f96ada0be22cddce33679a34bc48..c58d589f95f044a6a864f8fa024b80a6d78da52e 100644
--- a/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart
@@ -11,11 +11,11 @@ class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
return new _CanvasRenderingContext2DWrappingImplementation();
}
- Dynamic get fillStyle() { return _get_fillStyle(this); }
- static Dynamic _get_fillStyle(var _this) native;
+ Object get fillStyle() { return _get_fillStyle(this); }
+ static Object _get_fillStyle(var _this) native;
- void set fillStyle(Dynamic value) { _set_fillStyle(this, value); }
- static void _set_fillStyle(var _this, Dynamic value) native;
+ void set fillStyle(Object value) { _set_fillStyle(this, value); }
+ static void _set_fillStyle(var _this, Object value) native;
String get font() { return _get_font(this); }
static String _get_font(var _this) native;
@@ -83,11 +83,11 @@ class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
void set shadowOffsetY(num value) { _set_shadowOffsetY(this, value); }
static void _set_shadowOffsetY(var _this, num value) native;
- Dynamic get strokeStyle() { return _get_strokeStyle(this); }
- static Dynamic _get_strokeStyle(var _this) native;
+ Object get strokeStyle() { return _get_strokeStyle(this); }
+ static Object _get_strokeStyle(var _this) native;
- void set strokeStyle(Dynamic value) { _set_strokeStyle(this, value); }
- static void _set_strokeStyle(var _this, Dynamic value) native;
+ void set strokeStyle(Object value) { _set_strokeStyle(this, value); }
+ static void _set_strokeStyle(var _this, Object value) native;
String get textAlign() { return _get_textAlign(this); }
static String _get_textAlign(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698