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

Unified Diff: client/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart b/client/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart
index fee553de6514d4dd32000c3ef92235bfb73a06c1..0d0c69d8641331e05a07d9c6af82451d03e1cbcd 100644
--- a/client/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_EmbedElementWrappingImplementation.dart
@@ -11,9 +11,9 @@ class EmbedElementWrappingImplementation extends ElementWrappingImplementation i
void set align(String value) { _ptr.align = value; }
- int get height() { return _ptr.height; }
+ String get height() { return _ptr.height; }
- void set height(int value) { _ptr.height = value; }
+ void set height(String value) { _ptr.height = value; }
String get name() { return _ptr.name; }
@@ -27,7 +27,7 @@ class EmbedElementWrappingImplementation extends ElementWrappingImplementation i
void set type(String value) { _ptr.type = value; }
- int get width() { return _ptr.width; }
+ String get width() { return _ptr.width; }
- void set width(int value) { _ptr.width = value; }
+ void set width(String value) { _ptr.width = value; }
}

Powered by Google App Engine
This is Rietveld 408576698