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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 789f52149505a036b0b3d6dbf0860569d70d191b..c0371c57512682bb9069b7bb9fcc2d3447a56ce5 100644
--- a/client/dom/generated/src/frog/Range.dart
+++ b/client/dom/generated/src/frog/Range.dart
@@ -1,5 +1,5 @@
-class Range native "*Range" {
+class RangeJS implements Range native "*Range" {
static final int END_TO_END = 2;
@@ -19,27 +19,27 @@ class Range native "*Range" {
bool get collapsed() native "return this.collapsed;";
- Node get commonAncestorContainer() native "return this.commonAncestorContainer;";
+ NodeJS get commonAncestorContainer() native "return this.commonAncestorContainer;";
- Node get endContainer() native "return this.endContainer;";
+ NodeJS get endContainer() native "return this.endContainer;";
int get endOffset() native "return this.endOffset;";
- Node get startContainer() native "return this.startContainer;";
+ NodeJS get startContainer() native "return this.startContainer;";
int get startOffset() native "return this.startOffset;";
- DocumentFragment cloneContents() native;
+ DocumentFragmentJS cloneContents() native;
- Range cloneRange() native;
+ RangeJS cloneRange() native;
void collapse(bool toStart) native;
- int compareNode(Node refNode) native;
+ int compareNode(NodeJS refNode) native;
- int comparePoint(Node refNode, int offset) native;
+ int comparePoint(NodeJS refNode, int offset) native;
- DocumentFragment createContextualFragment(String html) native;
+ DocumentFragmentJS createContextualFragment(String html) native;
void deleteContents() native;
@@ -47,35 +47,35 @@ class Range native "*Range" {
void expand(String unit) native;
- DocumentFragment extractContents() native;
+ DocumentFragmentJS extractContents() native;
- ClientRect getBoundingClientRect() native;
+ ClientRectJS getBoundingClientRect() native;
- ClientRectList getClientRects() native;
+ ClientRectListJS getClientRects() native;
- void insertNode(Node newNode) native;
+ void insertNode(NodeJS newNode) native;
- bool intersectsNode(Node refNode) native;
+ bool intersectsNode(NodeJS refNode) native;
- bool isPointInRange(Node refNode, int offset) native;
+ bool isPointInRange(NodeJS refNode, int offset) native;
- void selectNode(Node refNode) native;
+ void selectNode(NodeJS refNode) native;
- void selectNodeContents(Node refNode) native;
+ void selectNodeContents(NodeJS refNode) native;
- void setEnd(Node refNode, int offset) native;
+ void setEnd(NodeJS refNode, int offset) native;
- void setEndAfter(Node refNode) native;
+ void setEndAfter(NodeJS refNode) native;
- void setEndBefore(Node refNode) native;
+ void setEndBefore(NodeJS refNode) native;
- void setStart(Node refNode, int offset) native;
+ void setStart(NodeJS refNode, int offset) native;
- void setStartAfter(Node refNode) native;
+ void setStartAfter(NodeJS refNode) native;
- void setStartBefore(Node refNode) native;
+ void setStartBefore(NodeJS refNode) native;
- void surroundContents(Node newParent) native;
+ void surroundContents(NodeJS newParent) native;
String toString() 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