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

Unified Diff: client/dom/generated/src/wrapping/_StyleSheetWrappingImplementation.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/_StyleSheetWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_StyleSheetWrappingImplementation.dart b/client/dom/generated/src/wrapping/_StyleSheetWrappingImplementation.dart
index 6a71c9abd1061283f96c4977e1a3b79f00bd7131..8a95fa272a60e54db6db55ab722a64ba9dd447f6 100644
--- a/client/dom/generated/src/wrapping/_StyleSheetWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_StyleSheetWrappingImplementation.dart
@@ -11,29 +11,29 @@ class _StyleSheetWrappingImplementation extends DOMWrapperBase implements StyleS
return new _StyleSheetWrappingImplementation();
}
- bool get disabled() { return _get__StyleSheet_disabled(this); }
- static bool _get__StyleSheet_disabled(var _this) native;
+ bool get disabled() { return _get_disabled(this); }
+ static bool _get_disabled(var _this) native;
- void set disabled(bool value) { _set__StyleSheet_disabled(this, value); }
- static void _set__StyleSheet_disabled(var _this, bool value) native;
+ void set disabled(bool value) { _set_disabled(this, value); }
+ static void _set_disabled(var _this, bool value) native;
- String get href() { return _get__StyleSheet_href(this); }
- static String _get__StyleSheet_href(var _this) native;
+ String get href() { return _get_href(this); }
+ static String _get_href(var _this) native;
- MediaList get media() { return _get__StyleSheet_media(this); }
- static MediaList _get__StyleSheet_media(var _this) native;
+ MediaList get media() { return _get_media(this); }
+ static MediaList _get_media(var _this) native;
- Node get ownerNode() { return _get__StyleSheet_ownerNode(this); }
- static Node _get__StyleSheet_ownerNode(var _this) native;
+ Node get ownerNode() { return _get_ownerNode(this); }
+ static Node _get_ownerNode(var _this) native;
- StyleSheet get parentStyleSheet() { return _get__StyleSheet_parentStyleSheet(this); }
- static StyleSheet _get__StyleSheet_parentStyleSheet(var _this) native;
+ StyleSheet get parentStyleSheet() { return _get_parentStyleSheet(this); }
+ static StyleSheet _get_parentStyleSheet(var _this) native;
- String get title() { return _get__StyleSheet_title(this); }
- static String _get__StyleSheet_title(var _this) native;
+ String get title() { return _get_title(this); }
+ static String _get_title(var _this) native;
- String get type() { return _get__StyleSheet_type(this); }
- static String _get__StyleSheet_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
String get typeName() { return "StyleSheet"; }
}

Powered by Google App Engine
This is Rietveld 408576698