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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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/SVGElementInstance.dart
diff --git a/client/dom/generated/src/frog/SVGElementInstance.dart b/client/dom/generated/src/frog/SVGElementInstance.dart
index ef9c1b45f87b9d0b3807e9f14705883e6bde0728..c0240c66ba2d67d37ef656a3ae7cf4157b594e4e 100644
--- a/client/dom/generated/src/frog/SVGElementInstance.dart
+++ b/client/dom/generated/src/frog/SVGElementInstance.dart
@@ -1,29 +1,25 @@
-class SVGElementInstanceJS implements SVGElementInstance native "*SVGElementInstance" {
+class SVGElementInstanceJs extends DOMTypeJs implements SVGElementInstance native "*SVGElementInstance" {
- SVGElementInstanceListJS get childNodes() native "return this.childNodes;";
+ SVGElementInstanceListJs get childNodes() native "return this.childNodes;";
- SVGElementJS get correspondingElement() native "return this.correspondingElement;";
+ SVGElementJs get correspondingElement() native "return this.correspondingElement;";
- SVGUseElementJS get correspondingUseElement() native "return this.correspondingUseElement;";
+ SVGUseElementJs get correspondingUseElement() native "return this.correspondingUseElement;";
- SVGElementInstanceJS get firstChild() native "return this.firstChild;";
+ SVGElementInstanceJs get firstChild() native "return this.firstChild;";
- SVGElementInstanceJS get lastChild() native "return this.lastChild;";
+ SVGElementInstanceJs get lastChild() native "return this.lastChild;";
- SVGElementInstanceJS get nextSibling() native "return this.nextSibling;";
+ SVGElementInstanceJs get nextSibling() native "return this.nextSibling;";
- SVGElementInstanceJS get parentNode() native "return this.parentNode;";
+ SVGElementInstanceJs get parentNode() native "return this.parentNode;";
- SVGElementInstanceJS get previousSibling() native "return this.previousSibling;";
+ SVGElementInstanceJs get previousSibling() native "return this.previousSibling;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
- bool dispatchEvent(EventJS event) native;
+ bool dispatchEvent(EventJs event) native;
void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
}
« no previous file with comments | « client/dom/generated/src/frog/SVGElement.dart ('k') | client/dom/generated/src/frog/SVGElementInstanceList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698