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

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

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak 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/_HTMLCanvasElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart
index fbb1d49d35fad5aef67611b899f006873a4b3d20..6d88612f3a85a9b382b0320ce6c86cf06b634ad4 100644
--- a/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLCanvasElementWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _HTMLCanvasElementWrappingImplementation extends _HTMLElementWrappingImple
return new _HTMLCanvasElementWrappingImplementation();
}
- int get height() { return _get__HTMLCanvasElement_height(this); }
- static int _get__HTMLCanvasElement_height(var _this) native;
+ int get height() { return _get_height(this); }
+ static int _get_height(var _this) native;
- void set height(int value) { _set__HTMLCanvasElement_height(this, value); }
- static void _set__HTMLCanvasElement_height(var _this, int value) native;
+ void set height(int value) { _set_height(this, value); }
+ static void _set_height(var _this, int value) native;
- int get width() { return _get__HTMLCanvasElement_width(this); }
- static int _get__HTMLCanvasElement_width(var _this) native;
+ int get width() { return _get_width(this); }
+ static int _get_width(var _this) native;
- void set width(int value) { _set__HTMLCanvasElement_width(this, value); }
- static void _set__HTMLCanvasElement_width(var _this, int value) native;
+ void set width(int value) { _set_width(this, value); }
+ static void _set_width(var _this, int value) native;
Object getContext(String contextId) {
return _getContext(this, contextId);

Powered by Google App Engine
This is Rietveld 408576698