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

Unified Diff: client/dom/generated/src/wrapping/_ImageDataWrappingImplementation.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/_ImageDataWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ImageDataWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ImageDataWrappingImplementation.dart
index 96db2a5720e44fd0d5da2beb952daeb84286af8b..5f87845f757676de19b5bdad2d4409fb9cba42c8 100644
--- a/client/dom/generated/src/wrapping/_ImageDataWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ImageDataWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _ImageDataWrappingImplementation extends DOMWrapperBase implements ImageDa
return new _ImageDataWrappingImplementation();
}
- CanvasPixelArray get data() { return _get__ImageData_data(this); }
- static CanvasPixelArray _get__ImageData_data(var _this) native;
+ CanvasPixelArray get data() { return _get_data(this); }
+ static CanvasPixelArray _get_data(var _this) native;
- int get height() { return _get__ImageData_height(this); }
- static int _get__ImageData_height(var _this) native;
+ int get height() { return _get_height(this); }
+ static int _get_height(var _this) native;
- int get width() { return _get__ImageData_width(this); }
- static int _get__ImageData_width(var _this) native;
+ int get width() { return _get_width(this); }
+ static int _get_width(var _this) native;
String get typeName() { return "ImageData"; }
}

Powered by Google App Engine
This is Rietveld 408576698