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

Unified Diff: client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.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/_CSSStyleDeclarationWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart b/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
index 11cbb62b07151dae881c91828b748ea0ffa4c857..df36a04e34067f177b1452c84a128ddec342faec 100644
--- a/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_CSSStyleDeclarationWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implemen
return new _CSSStyleDeclarationWrappingImplementation();
}
- String get cssText() { return _get__CSSStyleDeclaration_cssText(this); }
- static String _get__CSSStyleDeclaration_cssText(var _this) native;
+ String get cssText() { return _get_cssText(this); }
+ static String _get_cssText(var _this) native;
- void set cssText(String value) { _set__CSSStyleDeclaration_cssText(this, value); }
- static void _set__CSSStyleDeclaration_cssText(var _this, String value) native;
+ void set cssText(String value) { _set_cssText(this, value); }
+ static void _set_cssText(var _this, String value) native;
- int get length() { return _get__CSSStyleDeclaration_length(this); }
- static int _get__CSSStyleDeclaration_length(var _this) native;
+ int get length() { return _get_length(this); }
+ static int _get_length(var _this) native;
- CSSRule get parentRule() { return _get__CSSStyleDeclaration_parentRule(this); }
- static CSSRule _get__CSSStyleDeclaration_parentRule(var _this) native;
+ CSSRule get parentRule() { return _get_parentRule(this); }
+ static CSSRule _get_parentRule(var _this) native;
CSSValue getPropertyCSSValue(String propertyName) {
return _getPropertyCSSValue(this, propertyName);

Powered by Google App Engine
This is Rietveld 408576698