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

Unified Diff: client/dom/generated/src/wrapping/_CSSStyleSheetWrappingImplementation.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/_CSSStyleSheetWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_CSSStyleSheetWrappingImplementation.dart b/client/dom/generated/src/wrapping/_CSSStyleSheetWrappingImplementation.dart
index 3315feb0c953d74f76f025590961261a14483f2c..2e2b4673b041d02fda03f6c123bbedcdf30ab3d3 100644
--- a/client/dom/generated/src/wrapping/_CSSStyleSheetWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CSSStyleSheetWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _CSSStyleSheetWrappingImplementation extends _StyleSheetWrappingImplementa
return new _CSSStyleSheetWrappingImplementation();
}
- CSSRuleList get cssRules() { return _get__CSSStyleSheet_cssRules(this); }
- static CSSRuleList _get__CSSStyleSheet_cssRules(var _this) native;
+ CSSRuleList get cssRules() { return _get_cssRules(this); }
+ static CSSRuleList _get_cssRules(var _this) native;
- CSSRule get ownerRule() { return _get__CSSStyleSheet_ownerRule(this); }
- static CSSRule _get__CSSStyleSheet_ownerRule(var _this) native;
+ CSSRule get ownerRule() { return _get_ownerRule(this); }
+ static CSSRule _get_ownerRule(var _this) native;
- CSSRuleList get rules() { return _get__CSSStyleSheet_rules(this); }
- static CSSRuleList _get__CSSStyleSheet_rules(var _this) native;
+ CSSRuleList get rules() { return _get_rules(this); }
+ static CSSRuleList _get_rules(var _this) native;
int addRule(String selector, String style, [int index = null]) {
if (index === null) {

Powered by Google App Engine
This is Rietveld 408576698