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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 1f899d15bb5083c3dc358d7f111dbefc8d2135a7..7325f625e9cb5eae6ddb2b5ff5281c5b99cdfddd 100644
--- a/client/dom/generated/src/frog/TreeWalker.dart
+++ b/client/dom/generated/src/frog/TreeWalker.dart
@@ -1,29 +1,29 @@
-class TreeWalkerJs extends DOMTypeJs implements TreeWalker native "*TreeWalker" {
+class _TreeWalkerJs extends _DOMTypeJs implements TreeWalker native "*TreeWalker" {
- NodeJs get currentNode() native "return this.currentNode;";
+ _NodeJs get currentNode() native "return this.currentNode;";
- void set currentNode(NodeJs value) native "this.currentNode = value;";
+ void set currentNode(_NodeJs value) native "this.currentNode = value;";
bool get expandEntityReferences() native "return this.expandEntityReferences;";
- NodeFilterJs get filter() native "return this.filter;";
+ _NodeFilterJs get filter() native "return this.filter;";
- NodeJs get root() native "return this.root;";
+ _NodeJs get root() native "return this.root;";
int get whatToShow() native "return this.whatToShow;";
- NodeJs firstChild() native;
+ _NodeJs firstChild() native;
- NodeJs lastChild() native;
+ _NodeJs lastChild() native;
- NodeJs nextNode() native;
+ _NodeJs nextNode() native;
- NodeJs nextSibling() native;
+ _NodeJs nextSibling() native;
- NodeJs parentNode() native;
+ _NodeJs parentNode() native;
- NodeJs previousNode() native;
+ _NodeJs previousNode() native;
- NodeJs previousSibling() native;
+ _NodeJs previousSibling() native;
}
« 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