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

Unified Diff: client/dom/generated/src/wrapping/_RGBColorWrappingImplementation.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/_RGBColorWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_RGBColorWrappingImplementation.dart b/client/dom/generated/src/wrapping/_RGBColorWrappingImplementation.dart
index eb645c91bc0bcc290a76e942a7737eff25ccfa3b..101da5e67c7d65f9543846be8668de6686b30f3f 100644
--- a/client/dom/generated/src/wrapping/_RGBColorWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_RGBColorWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _RGBColorWrappingImplementation extends DOMWrapperBase implements RGBColor
return new _RGBColorWrappingImplementation();
}
- CSSPrimitiveValue get blue() { return _get__RGBColor_blue(this); }
- static CSSPrimitiveValue _get__RGBColor_blue(var _this) native;
+ CSSPrimitiveValue get blue() { return _get_blue(this); }
+ static CSSPrimitiveValue _get_blue(var _this) native;
- CSSPrimitiveValue get green() { return _get__RGBColor_green(this); }
- static CSSPrimitiveValue _get__RGBColor_green(var _this) native;
+ CSSPrimitiveValue get green() { return _get_green(this); }
+ static CSSPrimitiveValue _get_green(var _this) native;
- CSSPrimitiveValue get red() { return _get__RGBColor_red(this); }
- static CSSPrimitiveValue _get__RGBColor_red(var _this) native;
+ CSSPrimitiveValue get red() { return _get_red(this); }
+ static CSSPrimitiveValue _get_red(var _this) native;
String get typeName() { return "RGBColor"; }
}

Powered by Google App Engine
This is Rietveld 408576698