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

Unified Diff: client/dom/generated/src/frog/Range.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 months 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
« no previous file with comments | « client/dom/generated/src/frog/RGBColor.dart ('k') | client/dom/generated/src/frog/RangeException.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Range.dart
diff --git a/client/dom/generated/src/frog/Range.dart b/client/dom/generated/src/frog/Range.dart
index c0371c57512682bb9069b7bb9fcc2d3447a56ce5..35ac76728d794dac9617f7839698b9680d466c13 100644
--- a/client/dom/generated/src/frog/Range.dart
+++ b/client/dom/generated/src/frog/Range.dart
@@ -1,5 +1,5 @@
-class RangeJS implements Range native "*Range" {
+class RangeJs extends DOMTypeJs implements Range native "*Range" {
static final int END_TO_END = 2;
@@ -19,27 +19,27 @@ class RangeJS implements Range native "*Range" {
bool get collapsed() native "return this.collapsed;";
- NodeJS get commonAncestorContainer() native "return this.commonAncestorContainer;";
+ NodeJs get commonAncestorContainer() native "return this.commonAncestorContainer;";
- NodeJS get endContainer() native "return this.endContainer;";
+ NodeJs get endContainer() native "return this.endContainer;";
int get endOffset() native "return this.endOffset;";
- NodeJS get startContainer() native "return this.startContainer;";
+ NodeJs get startContainer() native "return this.startContainer;";
int get startOffset() native "return this.startOffset;";
- DocumentFragmentJS cloneContents() native;
+ DocumentFragmentJs cloneContents() native;
- RangeJS cloneRange() native;
+ RangeJs cloneRange() native;
void collapse(bool toStart) native;
- int compareNode(NodeJS refNode) native;
+ int compareNode(NodeJs refNode) native;
- int comparePoint(NodeJS refNode, int offset) native;
+ int comparePoint(NodeJs refNode, int offset) native;
- DocumentFragmentJS createContextualFragment(String html) native;
+ DocumentFragmentJs createContextualFragment(String html) native;
void deleteContents() native;
@@ -47,39 +47,35 @@ class RangeJS implements Range native "*Range" {
void expand(String unit) native;
- DocumentFragmentJS extractContents() native;
+ DocumentFragmentJs extractContents() native;
- ClientRectJS getBoundingClientRect() native;
+ ClientRectJs getBoundingClientRect() native;
- ClientRectListJS getClientRects() native;
+ ClientRectListJs getClientRects() native;
- void insertNode(NodeJS newNode) native;
+ void insertNode(NodeJs newNode) native;
- bool intersectsNode(NodeJS refNode) native;
+ bool intersectsNode(NodeJs refNode) native;
- bool isPointInRange(NodeJS refNode, int offset) native;
+ bool isPointInRange(NodeJs refNode, int offset) native;
- void selectNode(NodeJS refNode) native;
+ void selectNode(NodeJs refNode) native;
- void selectNodeContents(NodeJS refNode) native;
+ void selectNodeContents(NodeJs refNode) native;
- void setEnd(NodeJS refNode, int offset) native;
+ void setEnd(NodeJs refNode, int offset) native;
- void setEndAfter(NodeJS refNode) native;
+ void setEndAfter(NodeJs refNode) native;
- void setEndBefore(NodeJS refNode) native;
+ void setEndBefore(NodeJs refNode) native;
- void setStart(NodeJS refNode, int offset) native;
+ void setStart(NodeJs refNode, int offset) native;
- void setStartAfter(NodeJS refNode) native;
+ void setStartAfter(NodeJs refNode) native;
- void setStartBefore(NodeJS refNode) native;
+ void setStartBefore(NodeJs refNode) native;
- void surroundContents(NodeJS newParent) native;
+ void surroundContents(NodeJs newParent) native;
String toString() native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
}
« no previous file with comments | « client/dom/generated/src/frog/RGBColor.dart ('k') | client/dom/generated/src/frog/RangeException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698