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

Unified Diff: client/dom/generated/src/wrapping/_HTMLPreElementWrappingImplementation.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/_HTMLPreElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLPreElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLPreElementWrappingImplementation.dart
index cbfbe22df9d9beea38fd902e1ff0f9ad794d3628..aff4459ac9335e200cd9e9cf0de19cf8001d956a 100644
--- a/client/dom/generated/src/wrapping/_HTMLPreElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLPreElementWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _HTMLPreElementWrappingImplementation extends _HTMLElementWrappingImplemen
return new _HTMLPreElementWrappingImplementation();
}
- int get width() { return _get__HTMLPreElement_width(this); }
- static int _get__HTMLPreElement_width(var _this) native;
+ int get width() { return _get_width(this); }
+ static int _get_width(var _this) native;
- void set width(int value) { _set__HTMLPreElement_width(this, value); }
- static void _set__HTMLPreElement_width(var _this, int value) native;
+ void set width(int value) { _set_width(this, value); }
+ static void _set_width(var _this, int value) native;
- bool get wrap() { return _get__HTMLPreElement_wrap(this); }
- static bool _get__HTMLPreElement_wrap(var _this) native;
+ bool get wrap() { return _get_wrap(this); }
+ static bool _get_wrap(var _this) native;
- void set wrap(bool value) { _set__HTMLPreElement_wrap(this, value); }
- static void _set__HTMLPreElement_wrap(var _this, bool value) native;
+ void set wrap(bool value) { _set_wrap(this, value); }
+ static void _set_wrap(var _this, bool value) native;
String get typeName() { return "HTMLPreElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698