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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _RangeWrappingImplementation extends DOMWrapperBase implements Range { 7 class _RangeWrappingImplementation extends DOMWrapperBase implements Range {
8 _RangeWrappingImplementation() : super() {} 8 _RangeWrappingImplementation() : super() {}
9 9
10 static create__RangeWrappingImplementation() native { 10 static create__RangeWrappingImplementation() native {
11 return new _RangeWrappingImplementation(); 11 return new _RangeWrappingImplementation();
12 } 12 }
13 13
14 bool get collapsed() { return _get__Range_collapsed(this); } 14 bool get collapsed() { return _get_collapsed(this); }
15 static bool _get__Range_collapsed(var _this) native; 15 static bool _get_collapsed(var _this) native;
16 16
17 Node get commonAncestorContainer() { return _get__Range_commonAncestorContaine r(this); } 17 Node get commonAncestorContainer() { return _get_commonAncestorContainer(this) ; }
18 static Node _get__Range_commonAncestorContainer(var _this) native; 18 static Node _get_commonAncestorContainer(var _this) native;
19 19
20 Node get endContainer() { return _get__Range_endContainer(this); } 20 Node get endContainer() { return _get_endContainer(this); }
21 static Node _get__Range_endContainer(var _this) native; 21 static Node _get_endContainer(var _this) native;
22 22
23 int get endOffset() { return _get__Range_endOffset(this); } 23 int get endOffset() { return _get_endOffset(this); }
24 static int _get__Range_endOffset(var _this) native; 24 static int _get_endOffset(var _this) native;
25 25
26 Node get startContainer() { return _get__Range_startContainer(this); } 26 Node get startContainer() { return _get_startContainer(this); }
27 static Node _get__Range_startContainer(var _this) native; 27 static Node _get_startContainer(var _this) native;
28 28
29 int get startOffset() { return _get__Range_startOffset(this); } 29 int get startOffset() { return _get_startOffset(this); }
30 static int _get__Range_startOffset(var _this) native; 30 static int _get_startOffset(var _this) native;
31 31
32 DocumentFragment cloneContents() { 32 DocumentFragment cloneContents() {
33 return _cloneContents(this); 33 return _cloneContents(this);
34 } 34 }
35 static DocumentFragment _cloneContents(receiver) native; 35 static DocumentFragment _cloneContents(receiver) native;
36 36
37 Range cloneRange() { 37 Range cloneRange() {
38 return _cloneRange(this); 38 return _cloneRange(this);
39 } 39 }
40 static Range _cloneRange(receiver) native; 40 static Range _cloneRange(receiver) native;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 } 163 }
164 static void _surroundContents(receiver, newParent) native; 164 static void _surroundContents(receiver, newParent) native;
165 165
166 String toString() { 166 String toString() {
167 return _toString(this); 167 return _toString(this);
168 } 168 }
169 static String _toString(receiver) native; 169 static String _toString(receiver) native;
170 170
171 String get typeName() { return "Range"; } 171 String get typeName() { return "Range"; }
172 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698