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

Unified Diff: client/dom/generated/src/frog/HTMLIFrameElement.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/HTMLIFrameElement.dart
diff --git a/client/dom/generated/src/frog/HTMLIFrameElement.dart b/client/dom/generated/src/frog/HTMLIFrameElement.dart
index ee6ef2852e866ae6c19c4234c53cd9deb36f74b8..a9707ff240177796dc8063c05527cb456de75935 100644
--- a/client/dom/generated/src/frog/HTMLIFrameElement.dart
+++ b/client/dom/generated/src/frog/HTMLIFrameElement.dart
@@ -1,13 +1,13 @@
-class HTMLIFrameElement extends HTMLElement native "*HTMLIFrameElement" {
+class HTMLIFrameElementJS extends HTMLElementJS implements HTMLIFrameElement native "*HTMLIFrameElement" {
String get align() native "return this.align;";
void set align(String value) native "this.align = value;";
- Document get contentDocument() native "return this.contentDocument;";
+ DocumentJS get contentDocument() native "return this.contentDocument;";
- DOMWindow get contentWindow() native "return this.contentWindow;";
+ DOMWindowJS get contentWindow() native "return this.contentWindow;";
String get frameBorder() native "return this.frameBorder;";
@@ -49,5 +49,5 @@ class HTMLIFrameElement extends HTMLElement native "*HTMLIFrameElement" {
void set width(String value) native "this.width = value;";
- SVGDocument getSVGDocument() native;
+ SVGDocumentJS getSVGDocument() native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLHtmlElement.dart ('k') | client/dom/generated/src/frog/HTMLImageElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698