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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 fd0b1c249a174eabca970e6c6506382aec030532..57387a90643a4afc1528be14f0975438ef3b4285 100644
--- a/client/dom/generated/src/frog/HTMLDocument.dart
+++ b/client/dom/generated/src/frog/HTMLDocument.dart
@@ -1,15 +1,15 @@
-class HTMLDocumentJs extends DocumentJs implements HTMLDocument native "*HTMLDocument" {
+class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLDocument" {
- ElementJs 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;";
- HTMLAllCollectionJs get all() native "return this.all;";
+ _HTMLAllCollectionJs get all() native "return this.all;";
- void set all(HTMLAllCollectionJs 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 HTMLDocumentJs extends DocumentJs implements HTMLDocument native "*HTMLDoc
void set dir(String value) native "this.dir = value;";
- HTMLCollectionJs 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 HTMLDocumentJs extends DocumentJs implements HTMLDocument native "*HTMLDoc
void set linkColor(String value) native "this.linkColor = value;";
- HTMLCollectionJs get plugins() native "return this.plugins;";
+ _HTMLCollectionJs get plugins() native "return this.plugins;";
- HTMLCollectionJs 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