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

Unified Diff: lib/html/src/SVGSVGElement.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: lib/html/src/SVGSVGElement.dart
diff --git a/lib/html/src/SVGSVGElement.dart b/lib/html/src/SVGSVGElement.dart
index d18fde684548363e19348ce35d5ebceadfe07c0e..e90bd87130649a7dda54e295eee00e090af55a50 100644
--- a/lib/html/src/SVGSVGElement.dart
+++ b/lib/html/src/SVGSVGElement.dart
@@ -7,41 +7,41 @@ interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
SVGSVGElement();
- String get contentScriptType();
+ String get contentScriptType;
void set contentScriptType(String value);
- String get contentStyleType();
+ String get contentStyleType;
void set contentStyleType(String value);
- num get currentScale();
+ num get currentScale;
void set currentScale(num value);
- SVGPoint get currentTranslate();
+ SVGPoint get currentTranslate;
- SVGAnimatedLength get height();
+ SVGAnimatedLength get height;
- num get pixelUnitToMillimeterX();
+ num get pixelUnitToMillimeterX;
- num get pixelUnitToMillimeterY();
+ num get pixelUnitToMillimeterY;
- num get screenPixelToMillimeterX();
+ num get screenPixelToMillimeterX;
- num get screenPixelToMillimeterY();
+ num get screenPixelToMillimeterY;
- bool get useCurrentView();
+ bool get useCurrentView;
void set useCurrentView(bool value);
- SVGRect get viewport();
+ SVGRect get viewport;
- SVGAnimatedLength get width();
+ SVGAnimatedLength get width;
- SVGAnimatedLength get x();
+ SVGAnimatedLength get x;
- SVGAnimatedLength get y();
+ SVGAnimatedLength get y;
bool animationsPaused();
« no previous file with comments | « lib/html/src/SVGElementWrappingImplementation.dart ('k') | lib/html/src/SVGSVGElementWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698