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

Unified Diff: client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.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/_XPathResultWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.dart b/client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.dart
index 145d712498e70c89c8961d579e9e0dc3c473ea81..292063e87f5e8fe6d1982c5cbfd42ccbc7e70fad 100644
--- a/client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.dart
@@ -11,26 +11,26 @@ class _XPathResultWrappingImplementation extends DOMWrapperBase implements XPath
return new _XPathResultWrappingImplementation();
}
- bool get booleanValue() { return _get__XPathResult_booleanValue(this); }
- static bool _get__XPathResult_booleanValue(var _this) native;
+ bool get booleanValue() { return _get_booleanValue(this); }
+ static bool _get_booleanValue(var _this) native;
- bool get invalidIteratorState() { return _get__XPathResult_invalidIteratorState(this); }
- static bool _get__XPathResult_invalidIteratorState(var _this) native;
+ bool get invalidIteratorState() { return _get_invalidIteratorState(this); }
+ static bool _get_invalidIteratorState(var _this) native;
- num get numberValue() { return _get__XPathResult_numberValue(this); }
- static num _get__XPathResult_numberValue(var _this) native;
+ num get numberValue() { return _get_numberValue(this); }
+ static num _get_numberValue(var _this) native;
- int get resultType() { return _get__XPathResult_resultType(this); }
- static int _get__XPathResult_resultType(var _this) native;
+ int get resultType() { return _get_resultType(this); }
+ static int _get_resultType(var _this) native;
- Node get singleNodeValue() { return _get__XPathResult_singleNodeValue(this); }
- static Node _get__XPathResult_singleNodeValue(var _this) native;
+ Node get singleNodeValue() { return _get_singleNodeValue(this); }
+ static Node _get_singleNodeValue(var _this) native;
- int get snapshotLength() { return _get__XPathResult_snapshotLength(this); }
- static int _get__XPathResult_snapshotLength(var _this) native;
+ int get snapshotLength() { return _get_snapshotLength(this); }
+ static int _get_snapshotLength(var _this) native;
- String get stringValue() { return _get__XPathResult_stringValue(this); }
- static String _get__XPathResult_stringValue(var _this) native;
+ String get stringValue() { return _get_stringValue(this); }
+ static String _get_stringValue(var _this) native;
Node iterateNext() {
return _iterateNext(this);

Powered by Google App Engine
This is Rietveld 408576698