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

Unified Diff: client/dom/generated/src/frog/RGBColor.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 11 months 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/frog/RGBColor.dart
diff --git a/client/dom/generated/src/frog/RGBColor.dart b/client/dom/generated/src/frog/RGBColor.dart
index c8280a58247893c1e3e35018cbd6fd1b0a4d5d5a..aa6a831c284c59e4d07ca1010e68fca929fb6155 100644
--- a/client/dom/generated/src/frog/RGBColor.dart
+++ b/client/dom/generated/src/frog/RGBColor.dart
@@ -1,9 +1,9 @@
class _RGBColorJs extends _DOMTypeJs implements RGBColor native "*RGBColor" {
- _CSSPrimitiveValueJs get blue() native "return this.blue;";
+ final _CSSPrimitiveValueJs blue;
- _CSSPrimitiveValueJs get green() native "return this.green;";
+ final _CSSPrimitiveValueJs green;
- _CSSPrimitiveValueJs get red() native "return this.red;";
+ final _CSSPrimitiveValueJs red;
}

Powered by Google App Engine
This is Rietveld 408576698