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

Unified Diff: client/dom/generated/src/wrapping/_HTMLTrackElementWrappingImplementation.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/_HTMLTrackElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLTrackElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLTrackElementWrappingImplementation.dart
index 74be6012e356db6cbd4b4d19f976946f6142186a..4bebfcd8857e0fc69004b6a2cbc9a92a1a2c75aa 100644
--- a/client/dom/generated/src/wrapping/_HTMLTrackElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLTrackElementWrappingImplementation.dart
@@ -11,38 +11,38 @@ class _HTMLTrackElementWrappingImplementation extends _HTMLElementWrappingImplem
return new _HTMLTrackElementWrappingImplementation();
}
- bool get isDefault() { return _get__HTMLTrackElement_isDefault(this); }
- static bool _get__HTMLTrackElement_isDefault(var _this) native;
+ bool get isDefault() { return _get_isDefault(this); }
+ static bool _get_isDefault(var _this) native;
- void set isDefault(bool value) { _set__HTMLTrackElement_isDefault(this, value); }
- static void _set__HTMLTrackElement_isDefault(var _this, bool value) native;
+ void set isDefault(bool value) { _set_isDefault(this, value); }
+ static void _set_isDefault(var _this, bool value) native;
- String get kind() { return _get__HTMLTrackElement_kind(this); }
- static String _get__HTMLTrackElement_kind(var _this) native;
+ String get kind() { return _get_kind(this); }
+ static String _get_kind(var _this) native;
- void set kind(String value) { _set__HTMLTrackElement_kind(this, value); }
- static void _set__HTMLTrackElement_kind(var _this, String value) native;
+ void set kind(String value) { _set_kind(this, value); }
+ static void _set_kind(var _this, String value) native;
- String get label() { return _get__HTMLTrackElement_label(this); }
- static String _get__HTMLTrackElement_label(var _this) native;
+ String get label() { return _get_label(this); }
+ static String _get_label(var _this) native;
- void set label(String value) { _set__HTMLTrackElement_label(this, value); }
- static void _set__HTMLTrackElement_label(var _this, String value) native;
+ void set label(String value) { _set_label(this, value); }
+ static void _set_label(var _this, String value) native;
- String get src() { return _get__HTMLTrackElement_src(this); }
- static String _get__HTMLTrackElement_src(var _this) native;
+ String get src() { return _get_src(this); }
+ static String _get_src(var _this) native;
- void set src(String value) { _set__HTMLTrackElement_src(this, value); }
- static void _set__HTMLTrackElement_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 srclang() { return _get__HTMLTrackElement_srclang(this); }
- static String _get__HTMLTrackElement_srclang(var _this) native;
+ String get srclang() { return _get_srclang(this); }
+ static String _get_srclang(var _this) native;
- void set srclang(String value) { _set__HTMLTrackElement_srclang(this, value); }
- static void _set__HTMLTrackElement_srclang(var _this, String value) native;
+ void set srclang(String value) { _set_srclang(this, value); }
+ static void _set_srclang(var _this, String value) native;
- TextTrack get track() { return _get__HTMLTrackElement_track(this); }
- static TextTrack _get__HTMLTrackElement_track(var _this) native;
+ TextTrack get track() { return _get_track(this); }
+ static TextTrack _get_track(var _this) native;
String get typeName() { return "HTMLTrackElement"; }
}

Powered by Google App Engine
This is Rietveld 408576698