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

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

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List 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 fa37dbd979ba5dbab29ec64177eb21279a658d29..d7fe4d6142f02ebf242ed31fbe9759777df6c06d 100644
--- a/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_RangeWrappingImplementation.dart
@@ -29,9 +29,6 @@ class _RangeWrappingImplementation extends DOMWrapperBase implements Range {
int get startOffset() { return _get__Range_startOffset(this); }
static int _get__Range_startOffset(var _this) native;
- String get text() { return _get__Range_text(this); }
- static String _get__Range_text(var _this) native;
-
DocumentFragment cloneContents() {
return _cloneContents(this);
}
@@ -86,6 +83,16 @@ class _RangeWrappingImplementation extends DOMWrapperBase implements Range {
}
static DocumentFragment _extractContents(receiver) native;
+ ClientRect getBoundingClientRect() {
+ return _getBoundingClientRect(this);
+ }
+ static ClientRect _getBoundingClientRect(receiver) native;
+
+ ClientRectList getClientRects() {
+ return _getClientRects(this);
+ }
+ static ClientRectList _getClientRects(receiver) native;
+
void insertNode(Node newNode) {
_insertNode(this, newNode);
return;

Powered by Google App Engine
This is Rietveld 408576698