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

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

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List 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 e763ae1a8fd7fe0c8120a1e8e9e851d43880c822..5a16dbf3ac637e21c31a8432fc08e5ea1dc46099 100644
--- a/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLEmbedElementWrappingImplementation.dart
@@ -17,11 +17,11 @@ class _HTMLEmbedElementWrappingImplementation extends _HTMLElementWrappingImplem
void set align(String value) { _set__HTMLEmbedElement_align(this, value); }
static void _set__HTMLEmbedElement_align(var _this, String value) native;
- int get height() { return _get__HTMLEmbedElement_height(this); }
- static int _get__HTMLEmbedElement_height(var _this) native;
+ String get height() { return _get__HTMLEmbedElement_height(this); }
+ static String _get__HTMLEmbedElement_height(var _this) native;
- void set height(int value) { _set__HTMLEmbedElement_height(this, value); }
- static void _set__HTMLEmbedElement_height(var _this, int value) native;
+ void set height(String value) { _set__HTMLEmbedElement_height(this, value); }
+ static void _set__HTMLEmbedElement_height(var _this, String value) native;
String get name() { return _get__HTMLEmbedElement_name(this); }
static String _get__HTMLEmbedElement_name(var _this) native;
@@ -41,11 +41,11 @@ class _HTMLEmbedElementWrappingImplementation extends _HTMLElementWrappingImplem
void set type(String value) { _set__HTMLEmbedElement_type(this, value); }
static void _set__HTMLEmbedElement_type(var _this, String value) native;
- int get width() { return _get__HTMLEmbedElement_width(this); }
- static int _get__HTMLEmbedElement_width(var _this) native;
+ String get width() { return _get__HTMLEmbedElement_width(this); }
+ static String _get__HTMLEmbedElement_width(var _this) native;
- void set width(int value) { _set__HTMLEmbedElement_width(this, value); }
- static void _set__HTMLEmbedElement_width(var _this, int value) native;
+ void set width(String value) { _set__HTMLEmbedElement_width(this, value); }
+ static void _set__HTMLEmbedElement_width(var _this, String value) native;
String get typeName() { return "HTMLEmbedElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698