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

Side by Side Diff: client/dom/generated/src/frog/SVGViewSpec.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, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _SVGViewSpecJs extends _SVGZoomAndPanJs implements SVGViewSpec native "*SV GViewSpec" { 2 class _SVGViewSpecJs extends _SVGZoomAndPanJs implements SVGViewSpec native "*SV GViewSpec" {
3 3
4 String get preserveAspectRatioString() native "return this.preserveAspectRatio String;"; 4 final String preserveAspectRatioString;
5 5
6 _SVGTransformListJs get transform() native "return this.transform;"; 6 final _SVGTransformListJs transform;
7 7
8 String get transformString() native "return this.transformString;"; 8 final String transformString;
9 9
10 String get viewBoxString() native "return this.viewBoxString;"; 10 final String viewBoxString;
11 11
12 _SVGElementJs get viewTarget() native "return this.viewTarget;"; 12 final _SVGElementJs viewTarget;
13 13
14 String get viewTargetString() native "return this.viewTargetString;"; 14 final String viewTargetString;
15 15
16 // From SVGFitToViewBox 16 // From SVGFitToViewBox
17 17
18 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;"; 18 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
19 19
20 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 20 final _SVGAnimatedRectJs viewBox;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698