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

Unified Diff: client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.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/_HTMLEmbedElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart
index 5a16dbf3ac637e21c31a8432fc08e5ea1dc46099..284e2b4210eaa0769a131896a691fc50a9d2dee1 100644
--- a/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart
@@ -11,41 +11,41 @@ class _HTMLEmbedElementWrappingImplementation extends _HTMLElementWrappingImplem
return new _HTMLEmbedElementWrappingImplementation();
}
- String get align() { return _get__HTMLEmbedElement_align(this); }
- static String _get__HTMLEmbedElement_align(var _this) native;
+ String get align() { return _get_align(this); }
+ static String _get_align(var _this) native;
- void set align(String value) { _set__HTMLEmbedElement_align(this, value); }
- static void _set__HTMLEmbedElement_align(var _this, String value) native;
+ void set align(String value) { _set_align(this, value); }
+ static void _set_align(var _this, String value) native;
- String get height() { return _get__HTMLEmbedElement_height(this); }
- static String _get__HTMLEmbedElement_height(var _this) native;
+ String get height() { return _get_height(this); }
+ static String _get_height(var _this) native;
- void set height(String value) { _set__HTMLEmbedElement_height(this, value); }
- static void _set__HTMLEmbedElement_height(var _this, String value) native;
+ void set height(String value) { _set_height(this, value); }
+ static void _set_height(var _this, String value) native;
- String get name() { return _get__HTMLEmbedElement_name(this); }
- static String _get__HTMLEmbedElement_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- void set name(String value) { _set__HTMLEmbedElement_name(this, value); }
- static void _set__HTMLEmbedElement_name(var _this, String value) native;
+ void set name(String value) { _set_name(this, value); }
+ static void _set_name(var _this, String value) native;
- String get src() { return _get__HTMLEmbedElement_src(this); }
- static String _get__HTMLEmbedElement_src(var _this) native;
+ String get src() { return _get_src(this); }
+ static String _get_src(var _this) native;
- void set src(String value) { _set__HTMLEmbedElement_src(this, value); }
- static void _set__HTMLEmbedElement_src(var _this, String value) native;
+ void set src(String value) { _set_src(this, value); }
+ static void _set_src(var _this, String value) native;
- String get type() { return _get__HTMLEmbedElement_type(this); }
- static String _get__HTMLEmbedElement_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
- void set type(String value) { _set__HTMLEmbedElement_type(this, value); }
- static void _set__HTMLEmbedElement_type(var _this, String value) native;
+ void set type(String value) { _set_type(this, value); }
+ static void _set_type(var _this, String value) native;
- String get width() { return _get__HTMLEmbedElement_width(this); }
- static String _get__HTMLEmbedElement_width(var _this) native;
+ String get width() { return _get_width(this); }
+ static String _get_width(var _this) native;
- void set width(String value) { _set__HTMLEmbedElement_width(this, value); }
- static void _set__HTMLEmbedElement_width(var _this, String value) native;
+ void set width(String value) { _set_width(this, value); }
+ static void _set_width(var _this, String value) native;
String get typeName() { return "HTMLEmbedElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698