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

Unified Diff: client/dom/generated/src/frog/SVGElementInstance.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
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 30d3c108ab9c455f8343d09d31caa20b7a2a53de..ef9c1b45f87b9d0b3807e9f14705883e6bde0728 100644
--- a/client/dom/generated/src/frog/SVGElementInstance.dart
+++ b/client/dom/generated/src/frog/SVGElementInstance.dart
@@ -1,25 +1,25 @@
-class SVGElementInstance native "*SVGElementInstance" {
+class SVGElementInstanceJS implements SVGElementInstance native "*SVGElementInstance" {
- SVGElementInstanceList get childNodes() native "return this.childNodes;";
+ SVGElementInstanceListJS get childNodes() native "return this.childNodes;";
- SVGElement get correspondingElement() native "return this.correspondingElement;";
+ SVGElementJS get correspondingElement() native "return this.correspondingElement;";
- SVGUseElement get correspondingUseElement() native "return this.correspondingUseElement;";
+ SVGUseElementJS get correspondingUseElement() native "return this.correspondingUseElement;";
- SVGElementInstance get firstChild() native "return this.firstChild;";
+ SVGElementInstanceJS get firstChild() native "return this.firstChild;";
- SVGElementInstance get lastChild() native "return this.lastChild;";
+ SVGElementInstanceJS get lastChild() native "return this.lastChild;";
- SVGElementInstance get nextSibling() native "return this.nextSibling;";
+ SVGElementInstanceJS get nextSibling() native "return this.nextSibling;";
- SVGElementInstance get parentNode() native "return this.parentNode;";
+ SVGElementInstanceJS get parentNode() native "return this.parentNode;";
- SVGElementInstance 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(Event event) native;
+ bool dispatchEvent(EventJS event) native;
void removeEventListener(String type, EventListener listener, [bool useCapture = null]) 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