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

Unified Diff: client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.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/_NodeIteratorWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.dart b/client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.dart
index c0d51184b1fc7735c2dd4fdcc97fbbad984faad0..64d615a48f8e4ae8d2b69d8ac3c9d0c3e4ce01de 100644
--- a/client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_NodeIteratorWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _NodeIteratorWrappingImplementation extends DOMWrapperBase implements Node
return new _NodeIteratorWrappingImplementation();
}
- bool get expandEntityReferences() { return _get__NodeIterator_expandEntityReferences(this); }
- static bool _get__NodeIterator_expandEntityReferences(var _this) native;
+ bool get expandEntityReferences() { return _get_expandEntityReferences(this); }
+ static bool _get_expandEntityReferences(var _this) native;
- NodeFilter get filter() { return _get__NodeIterator_filter(this); }
- static NodeFilter _get__NodeIterator_filter(var _this) native;
+ NodeFilter get filter() { return _get_filter(this); }
+ static NodeFilter _get_filter(var _this) native;
- bool get pointerBeforeReferenceNode() { return _get__NodeIterator_pointerBeforeReferenceNode(this); }
- static bool _get__NodeIterator_pointerBeforeReferenceNode(var _this) native;
+ bool get pointerBeforeReferenceNode() { return _get_pointerBeforeReferenceNode(this); }
+ static bool _get_pointerBeforeReferenceNode(var _this) native;
- Node get referenceNode() { return _get__NodeIterator_referenceNode(this); }
- static Node _get__NodeIterator_referenceNode(var _this) native;
+ Node get referenceNode() { return _get_referenceNode(this); }
+ static Node _get_referenceNode(var _this) native;
- Node get root() { return _get__NodeIterator_root(this); }
- static Node _get__NodeIterator_root(var _this) native;
+ Node get root() { return _get_root(this); }
+ static Node _get_root(var _this) native;
- int get whatToShow() { return _get__NodeIterator_whatToShow(this); }
- static int _get__NodeIterator_whatToShow(var _this) native;
+ int get whatToShow() { return _get_whatToShow(this); }
+ static int _get_whatToShow(var _this) native;
void detach() {
_detach(this);

Powered by Google App Engine
This is Rietveld 408576698