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

Unified Diff: client/dom/generated/src/wrapping/_CSSRuleWrappingImplementation.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/_CSSRuleWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_CSSRuleWrappingImplementation.dart b/client/dom/generated/src/wrapping/_CSSRuleWrappingImplementation.dart
index 3139718839d89a1e1212148599647a9d98728f02..729a9a1e202130ec342e083f5c2a85451dd4b104 100644
--- a/client/dom/generated/src/wrapping/_CSSRuleWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CSSRuleWrappingImplementation.dart
@@ -11,20 +11,20 @@ class _CSSRuleWrappingImplementation extends DOMWrapperBase implements CSSRule {
return new _CSSRuleWrappingImplementation();
}
- String get cssText() { return _get__CSSRule_cssText(this); }
- static String _get__CSSRule_cssText(var _this) native;
+ String get cssText() { return _get_cssText(this); }
+ static String _get_cssText(var _this) native;
- void set cssText(String value) { _set__CSSRule_cssText(this, value); }
- static void _set__CSSRule_cssText(var _this, String value) native;
+ void set cssText(String value) { _set_cssText(this, value); }
+ static void _set_cssText(var _this, String value) native;
- CSSRule get parentRule() { return _get__CSSRule_parentRule(this); }
- static CSSRule _get__CSSRule_parentRule(var _this) native;
+ CSSRule get parentRule() { return _get_parentRule(this); }
+ static CSSRule _get_parentRule(var _this) native;
- CSSStyleSheet get parentStyleSheet() { return _get__CSSRule_parentStyleSheet(this); }
- static CSSStyleSheet _get__CSSRule_parentStyleSheet(var _this) native;
+ CSSStyleSheet get parentStyleSheet() { return _get_parentStyleSheet(this); }
+ static CSSStyleSheet _get_parentStyleSheet(var _this) native;
- int get type() { return _get__CSSRule_type(this); }
- static int _get__CSSRule_type(var _this) native;
+ int get type() { return _get_type(this); }
+ static int _get_type(var _this) native;
String get typeName() { return "CSSRule"; }
}

Powered by Google App Engine
This is Rietveld 408576698