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

Unified Diff: client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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/wrapping/_TreeWalkerWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart b/client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart
index 4a810007f9e5501b895eea4c7748ca1a2815f497..90e60659ba370fc5f1ac53ebb06e7fa235aa54e7 100644
--- a/client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_TreeWalkerWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _TreeWalkerWrappingImplementation extends DOMWrapperBase implements TreeWa
return new _TreeWalkerWrappingImplementation();
}
- Node get currentNode() { return _get__TreeWalker_currentNode(this); }
- static Node _get__TreeWalker_currentNode(var _this) native;
+ Node get currentNode() { return _get_currentNode(this); }
+ static Node _get_currentNode(var _this) native;
- void set currentNode(Node value) { _set__TreeWalker_currentNode(this, value); }
- static void _set__TreeWalker_currentNode(var _this, Node value) native;
+ void set currentNode(Node value) { _set_currentNode(this, value); }
+ static void _set_currentNode(var _this, Node value) native;
- bool get expandEntityReferences() { return _get__TreeWalker_expandEntityReferences(this); }
- static bool _get__TreeWalker_expandEntityReferences(var _this) native;
+ bool get expandEntityReferences() { return _get_expandEntityReferences(this); }
+ static bool _get_expandEntityReferences(var _this) native;
- NodeFilter get filter() { return _get__TreeWalker_filter(this); }
- static NodeFilter _get__TreeWalker_filter(var _this) native;
+ NodeFilter get filter() { return _get_filter(this); }
+ static NodeFilter _get_filter(var _this) native;
- Node get root() { return _get__TreeWalker_root(this); }
- static Node _get__TreeWalker_root(var _this) native;
+ Node get root() { return _get_root(this); }
+ static Node _get_root(var _this) native;
- int get whatToShow() { return _get__TreeWalker_whatToShow(this); }
- static int _get__TreeWalker_whatToShow(var _this) native;
+ int get whatToShow() { return _get_whatToShow(this); }
+ static int _get_whatToShow(var _this) native;
Node firstChild() {
return _firstChild(this);

Powered by Google App Engine
This is Rietveld 408576698