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

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

Issue 9466036: Fix parsing of DOMString[] in IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months 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/_HTMLElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
index 4da75ec6f556c41de3488d1269aa901955355d07..22429f6ee87cab67b8e9ea4d193e3203f4f4e928 100644
--- a/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.dart
@@ -110,6 +110,12 @@ class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation
void set title(String value) { _set_title(this, value); }
static void _set_title(var _this, String value) native;
+ bool get translate() { return _get_translate(this); }
+ static bool _get_translate(var _this) native;
+
+ void set translate(bool value) { _set_translate(this, value); }
+ static void _set_translate(var _this, bool value) native;
+
String get webkitdropzone() { return _get_webkitdropzone(this); }
static String _get_webkitdropzone(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698