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

Unified Diff: client/dom/generated/src/frog/HTMLObjectElement.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
Index: client/dom/generated/src/frog/HTMLObjectElement.dart
diff --git a/client/dom/generated/src/frog/HTMLObjectElement.dart b/client/dom/generated/src/frog/HTMLObjectElement.dart
index b7985d8e809ce8847f4cb5572488da27b772f741..f33e3bdb672ec6a9c24d2d04903173fd58646874 100644
--- a/client/dom/generated/src/frog/HTMLObjectElement.dart
+++ b/client/dom/generated/src/frog/HTMLObjectElement.dart
@@ -1,5 +1,5 @@
-class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
+class HTMLObjectElementJS extends HTMLElementJS implements HTMLObjectElement native "*HTMLObjectElement" {
String get align() native "return this.align;";
@@ -25,7 +25,7 @@ class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
void set codeType(String value) native "this.codeType = value;";
- Document get contentDocument() native "return this.contentDocument;";
+ DocumentJS get contentDocument() native "return this.contentDocument;";
String get data() native "return this.data;";
@@ -35,7 +35,7 @@ class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
void set declare(bool value) native "this.declare = value;";
- HTMLFormElement get form() native "return this.form;";
+ HTMLFormElementJS get form() native "return this.form;";
String get height() native "return this.height;";
@@ -63,7 +63,7 @@ class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
String get validationMessage() native "return this.validationMessage;";
- ValidityState get validity() native "return this.validity;";
+ ValidityStateJS get validity() native "return this.validity;";
int get vspace() native "return this.vspace;";
@@ -77,7 +77,7 @@ class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
bool checkValidity() native;
- SVGDocument getSVGDocument() native;
+ SVGDocumentJS getSVGDocument() native;
void setCustomValidity(String error) native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLOListElement.dart ('k') | client/dom/generated/src/frog/HTMLOptGroupElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698