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

Unified Diff: client/dom/generated/src/wrapping/_RangeWrappingImplementation.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/_RangeWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart b/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart
index d7fe4d6142f02ebf242ed31fbe9759777df6c06d..4f4f0024fe99d64998a10e8f9944bf28f70f6c27 100644
--- a/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _RangeWrappingImplementation extends DOMWrapperBase implements Range {
return new _RangeWrappingImplementation();
}
- bool get collapsed() { return _get__Range_collapsed(this); }
- static bool _get__Range_collapsed(var _this) native;
+ bool get collapsed() { return _get_collapsed(this); }
+ static bool _get_collapsed(var _this) native;
- Node get commonAncestorContainer() { return _get__Range_commonAncestorContainer(this); }
- static Node _get__Range_commonAncestorContainer(var _this) native;
+ Node get commonAncestorContainer() { return _get_commonAncestorContainer(this); }
+ static Node _get_commonAncestorContainer(var _this) native;
- Node get endContainer() { return _get__Range_endContainer(this); }
- static Node _get__Range_endContainer(var _this) native;
+ Node get endContainer() { return _get_endContainer(this); }
+ static Node _get_endContainer(var _this) native;
- int get endOffset() { return _get__Range_endOffset(this); }
- static int _get__Range_endOffset(var _this) native;
+ int get endOffset() { return _get_endOffset(this); }
+ static int _get_endOffset(var _this) native;
- Node get startContainer() { return _get__Range_startContainer(this); }
- static Node _get__Range_startContainer(var _this) native;
+ Node get startContainer() { return _get_startContainer(this); }
+ static Node _get_startContainer(var _this) native;
- int get startOffset() { return _get__Range_startOffset(this); }
- static int _get__Range_startOffset(var _this) native;
+ int get startOffset() { return _get_startOffset(this); }
+ static int _get_startOffset(var _this) native;
DocumentFragment cloneContents() {
return _cloneContents(this);

Powered by Google App Engine
This is Rietveld 408576698