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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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/SVGGlyphRefElement.dart
diff --git a/client/dom/generated/src/frog/SVGGlyphRefElement.dart b/client/dom/generated/src/frog/SVGGlyphRefElement.dart
index de1a2f7f52867fe4f379883307c7d16ac54b9cfc..a40800426cae93a1a25f62c9f0b3e704cf0ffad1 100644
--- a/client/dom/generated/src/frog/SVGGlyphRefElement.dart
+++ b/client/dom/generated/src/frog/SVGGlyphRefElement.dart
@@ -1,27 +1,39 @@
class SVGGlyphRefElement extends SVGElement native "*SVGGlyphRefElement" {
- num dx;
+ num get dx() native "return this.dx;";
- num dy;
+ void set dx(num value) native "this.dx = value;";
- String format;
+ num get dy() native "return this.dy;";
- String glyphRef;
+ void set dy(num value) native "this.dy = value;";
- num x;
+ String get format() native "return this.format;";
- num y;
+ void set format(String value) native "this.format = value;";
+
+ String get glyphRef() native "return this.glyphRef;";
+
+ void set glyphRef(String value) native "this.glyphRef = value;";
+
+ num get x() native "return this.x;";
+
+ void set x(num value) native "this.x = value;";
+
+ num get y() native "return this.y;";
+
+ void set y(num value) native "this.y = value;";
// From SVGURIReference
- SVGAnimatedString href;
+ SVGAnimatedString get href() native "return this.href;";
// From SVGStylable
- SVGAnimatedString className;
+ SVGAnimatedString get className() native "return this.className;";
- CSSStyleDeclaration style;
+ CSSStyleDeclaration get style() native "return this.style;";
CSSValue getPresentationAttribute(String name) native;
}
« no previous file with comments | « client/dom/generated/src/frog/SVGGElement.dart ('k') | client/dom/generated/src/frog/SVGGradientElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698