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

Unified Diff: client/dom/generated/src/wrapping/_HTMLMetaElementWrappingImplementation.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/_HTMLMetaElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLMetaElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLMetaElementWrappingImplementation.dart
index 93e25e7295f9239adc615d17d922d5ed5a392487..7d1d0defbfb1e06aac88e1cb3edcc1a6285464f6 100644
--- a/client/dom/generated/src/wrapping/_HTMLMetaElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLMetaElementWrappingImplementation.dart
@@ -11,29 +11,29 @@ class _HTMLMetaElementWrappingImplementation extends _HTMLElementWrappingImpleme
return new _HTMLMetaElementWrappingImplementation();
}
- String get content() { return _get__HTMLMetaElement_content(this); }
- static String _get__HTMLMetaElement_content(var _this) native;
+ String get content() { return _get_content(this); }
+ static String _get_content(var _this) native;
- void set content(String value) { _set__HTMLMetaElement_content(this, value); }
- static void _set__HTMLMetaElement_content(var _this, String value) native;
+ void set content(String value) { _set_content(this, value); }
+ static void _set_content(var _this, String value) native;
- String get httpEquiv() { return _get__HTMLMetaElement_httpEquiv(this); }
- static String _get__HTMLMetaElement_httpEquiv(var _this) native;
+ String get httpEquiv() { return _get_httpEquiv(this); }
+ static String _get_httpEquiv(var _this) native;
- void set httpEquiv(String value) { _set__HTMLMetaElement_httpEquiv(this, value); }
- static void _set__HTMLMetaElement_httpEquiv(var _this, String value) native;
+ void set httpEquiv(String value) { _set_httpEquiv(this, value); }
+ static void _set_httpEquiv(var _this, String value) native;
- String get name() { return _get__HTMLMetaElement_name(this); }
- static String _get__HTMLMetaElement_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- void set name(String value) { _set__HTMLMetaElement_name(this, value); }
- static void _set__HTMLMetaElement_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 scheme() { return _get__HTMLMetaElement_scheme(this); }
- static String _get__HTMLMetaElement_scheme(var _this) native;
+ String get scheme() { return _get_scheme(this); }
+ static String _get_scheme(var _this) native;
- void set scheme(String value) { _set__HTMLMetaElement_scheme(this, value); }
- static void _set__HTMLMetaElement_scheme(var _this, String value) native;
+ void set scheme(String value) { _set_scheme(this, value); }
+ static void _set_scheme(var _this, String value) native;
String get typeName() { return "HTMLMetaElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698