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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
« no previous file with comments | « client/dom/generated/src/frog/SVGRect.dart ('k') | client/dom/generated/src/frog/SVGRenderingIntent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/SVGRectElement.dart
diff --git a/client/dom/generated/src/frog/SVGRectElement.dart b/client/dom/generated/src/frog/SVGRectElement.dart
index 023bbc34c5caf96995100b051b243166f07aa87b..7f9917b56adcae73361d4f3962afad0c10be1c60 100644
--- a/client/dom/generated/src/frog/SVGRectElement.dart
+++ b/client/dom/generated/src/frog/SVGRectElement.dart
@@ -1,25 +1,25 @@
-class SVGRectElement extends SVGElement native "*SVGRectElement" {
+class SVGRectElementJS extends SVGElementJS implements SVGRectElement native "*SVGRectElement" {
- SVGAnimatedLength get height() native "return this.height;";
+ SVGAnimatedLengthJS get height() native "return this.height;";
- SVGAnimatedLength get rx() native "return this.rx;";
+ SVGAnimatedLengthJS get rx() native "return this.rx;";
- SVGAnimatedLength get ry() native "return this.ry;";
+ SVGAnimatedLengthJS get ry() native "return this.ry;";
- SVGAnimatedLength get width() native "return this.width;";
+ SVGAnimatedLengthJS get width() native "return this.width;";
- SVGAnimatedLength get x() native "return this.x;";
+ SVGAnimatedLengthJS get x() native "return this.x;";
- SVGAnimatedLength get y() native "return this.y;";
+ SVGAnimatedLengthJS get y() native "return this.y;";
// From SVGTests
- SVGStringList get requiredExtensions() native "return this.requiredExtensions;";
+ SVGStringListJS get requiredExtensions() native "return this.requiredExtensions;";
- SVGStringList get requiredFeatures() native "return this.requiredFeatures;";
+ SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;";
- SVGStringList get systemLanguage() native "return this.systemLanguage;";
+ SVGStringListJS get systemLanguage() native "return this.systemLanguage;";
bool hasExtension(String extension) native;
@@ -35,31 +35,31 @@ class SVGRectElement extends SVGElement native "*SVGRectElement" {
// From SVGExternalResourcesRequired
- SVGAnimatedBoolean get externalResourcesRequired() native "return this.externalResourcesRequired;";
+ SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.externalResourcesRequired;";
// From SVGStylable
- SVGAnimatedString get className() native "return this.className;";
+ SVGAnimatedStringJS get className() native "return this.className;";
- CSSStyleDeclaration get style() native "return this.style;";
+ CSSStyleDeclarationJS get style() native "return this.style;";
- CSSValue getPresentationAttribute(String name) native;
+ CSSValueJS getPresentationAttribute(String name) native;
// From SVGTransformable
- SVGAnimatedTransformList get transform() native "return this.transform;";
+ SVGAnimatedTransformListJS get transform() native "return this.transform;";
// From SVGLocatable
- SVGElement get farthestViewportElement() native "return this.farthestViewportElement;";
+ SVGElementJS get farthestViewportElement() native "return this.farthestViewportElement;";
- SVGElement get nearestViewportElement() native "return this.nearestViewportElement;";
+ SVGElementJS get nearestViewportElement() native "return this.nearestViewportElement;";
- SVGRect getBBox() native;
+ SVGRectJS getBBox() native;
- SVGMatrix getCTM() native;
+ SVGMatrixJS getCTM() native;
- SVGMatrix getScreenCTM() native;
+ SVGMatrixJS getScreenCTM() native;
- SVGMatrix getTransformToElement(SVGElement element) native;
+ SVGMatrixJS getTransformToElement(SVGElementJS element) native;
}
« no previous file with comments | « client/dom/generated/src/frog/SVGRect.dart ('k') | client/dom/generated/src/frog/SVGRenderingIntent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698