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

Unified Diff: client/dom/generated/src/frog/HTMLDocument.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/HTMLDivElement.dart ('k') | client/dom/generated/src/frog/HTMLElement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/HTMLDocument.dart
diff --git a/client/dom/generated/src/frog/HTMLDocument.dart b/client/dom/generated/src/frog/HTMLDocument.dart
index bb2371f2980b1a15a706742424f19204ac5961ca..64b5f5f0a44b5ab538bf07b46db23bb5a3c17d1e 100644
--- a/client/dom/generated/src/frog/HTMLDocument.dart
+++ b/client/dom/generated/src/frog/HTMLDocument.dart
@@ -1,15 +1,15 @@
-class HTMLDocument extends Document native "*HTMLDocument" {
+class HTMLDocumentJS extends DocumentJS implements HTMLDocument native "*HTMLDocument" {
- Element get activeElement() native "return this.activeElement;";
+ ElementJS get activeElement() native "return this.activeElement;";
String get alinkColor() native "return this.alinkColor;";
void set alinkColor(String value) native "this.alinkColor = value;";
- HTMLAllCollection get all() native "return this.all;";
+ HTMLAllCollectionJS get all() native "return this.all;";
- void set all(HTMLAllCollection value) native "this.all = value;";
+ void set all(HTMLAllCollectionJS value) native "this.all = value;";
String get bgColor() native "return this.bgColor;";
@@ -25,7 +25,7 @@ class HTMLDocument extends Document native "*HTMLDocument" {
void set dir(String value) native "this.dir = value;";
- HTMLCollection get embeds() native "return this.embeds;";
+ HTMLCollectionJS get embeds() native "return this.embeds;";
String get fgColor() native "return this.fgColor;";
@@ -35,9 +35,9 @@ class HTMLDocument extends Document native "*HTMLDocument" {
void set linkColor(String value) native "this.linkColor = value;";
- HTMLCollection get plugins() native "return this.plugins;";
+ HTMLCollectionJS get plugins() native "return this.plugins;";
- HTMLCollection get scripts() native "return this.scripts;";
+ HTMLCollectionJS get scripts() native "return this.scripts;";
String get vlinkColor() native "return this.vlinkColor;";
« no previous file with comments | « client/dom/generated/src/frog/HTMLDivElement.dart ('k') | client/dom/generated/src/frog/HTMLElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698