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

Unified Diff: client/dom/generated/src/frog/SVGAnimationElement.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/SVGAnimationElement.dart
diff --git a/client/dom/generated/src/frog/SVGAnimationElement.dart b/client/dom/generated/src/frog/SVGAnimationElement.dart
index fb73d33ea287f050cd3975d15fb29434a7279575..a9a230f498d1cc479c78b52bc8b85e878d837379 100644
--- a/client/dom/generated/src/frog/SVGAnimationElement.dart
+++ b/client/dom/generated/src/frog/SVGAnimationElement.dart
@@ -1,7 +1,7 @@
class _SVGAnimationElementJs extends _SVGElementJs implements SVGAnimationElement native "*SVGAnimationElement" {
- _SVGElementJs get targetElement() native "return this.targetElement;";
+ final _SVGElementJs targetElement;
num getCurrentTime() native;
@@ -11,17 +11,17 @@ class _SVGAnimationElementJs extends _SVGElementJs implements SVGAnimationElemen
// From SVGTests
- _SVGStringListJs get requiredExtensions() native "return this.requiredExtensions;";
+ final _SVGStringListJs requiredExtensions;
- _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;";
+ final _SVGStringListJs requiredFeatures;
- _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
+ final _SVGStringListJs systemLanguage;
bool hasExtension(String extension) native;
// From SVGExternalResourcesRequired
- _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.externalResourcesRequired;";
+ final _SVGAnimatedBooleanJs externalResourcesRequired;
// From ElementTimeControl

Powered by Google App Engine
This is Rietveld 408576698