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

Unified Diff: client/dom/generated/src/frog/TreeWalker.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/TrackEvent.dart ('k') | client/dom/generated/src/frog/UIEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/TreeWalker.dart
diff --git a/client/dom/generated/src/frog/TreeWalker.dart b/client/dom/generated/src/frog/TreeWalker.dart
index 98cc68410624ff7a02b072fb5796989ff5e337e4..e0bd23db5d841edab141dea7492b3d0ce28b654d 100644
--- a/client/dom/generated/src/frog/TreeWalker.dart
+++ b/client/dom/generated/src/frog/TreeWalker.dart
@@ -1,31 +1,31 @@
-class TreeWalker native "*TreeWalker" {
+class TreeWalkerJS implements TreeWalker native "*TreeWalker" {
- Node get currentNode() native "return this.currentNode;";
+ NodeJS get currentNode() native "return this.currentNode;";
- void set currentNode(Node value) native "this.currentNode = value;";
+ void set currentNode(NodeJS value) native "this.currentNode = value;";
bool get expandEntityReferences() native "return this.expandEntityReferences;";
- NodeFilter get filter() native "return this.filter;";
+ NodeFilterJS get filter() native "return this.filter;";
- Node get root() native "return this.root;";
+ NodeJS get root() native "return this.root;";
int get whatToShow() native "return this.whatToShow;";
- Node firstChild() native;
+ NodeJS firstChild() native;
- Node lastChild() native;
+ NodeJS lastChild() native;
- Node nextNode() native;
+ NodeJS nextNode() native;
- Node nextSibling() native;
+ NodeJS nextSibling() native;
- Node parentNode() native;
+ NodeJS parentNode() native;
- Node previousNode() native;
+ NodeJS previousNode() native;
- Node previousSibling() native;
+ NodeJS previousSibling() native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/TrackEvent.dart ('k') | client/dom/generated/src/frog/UIEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698