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

Unified Diff: client/dom/generated/src/frog/HTMLTableElement.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
Index: client/dom/generated/src/frog/HTMLTableElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableElement.dart b/client/dom/generated/src/frog/HTMLTableElement.dart
index 78ee31250d3ebe8d9b322ad084ef26c8d837a136..9b81f2fd3cc5a6a71240b2eeab117034ec765f34 100644
--- a/client/dom/generated/src/frog/HTMLTableElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableElement.dart
@@ -1,5 +1,5 @@
-class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement native "*HTMLTableElement" {
+class _HTMLTableElementJs extends _HTMLElementJs implements HTMLTableElement native "*HTMLTableElement" {
String get align() native "return this.align;";
@@ -13,9 +13,9 @@ class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ
void set border(String value) native "this.border = value;";
- HTMLTableCaptionElementJs get caption() native "return this.caption;";
+ _HTMLTableCaptionElementJs get caption() native "return this.caption;";
- void set caption(HTMLTableCaptionElementJs value) native "this.caption = value;";
+ void set caption(_HTMLTableCaptionElementJs value) native "this.caption = value;";
String get cellPadding() native "return this.cellPadding;";
@@ -29,7 +29,7 @@ class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ
void set frame(String value) native "this.frame = value;";
- HTMLCollectionJs get rows() native "return this.rows;";
+ _HTMLCollectionJs get rows() native "return this.rows;";
String get rules() native "return this.rules;";
@@ -39,25 +39,25 @@ class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ
void set summary(String value) native "this.summary = value;";
- HTMLCollectionJs get tBodies() native "return this.tBodies;";
+ _HTMLCollectionJs get tBodies() native "return this.tBodies;";
- HTMLTableSectionElementJs get tFoot() native "return this.tFoot;";
+ _HTMLTableSectionElementJs get tFoot() native "return this.tFoot;";
- void set tFoot(HTMLTableSectionElementJs value) native "this.tFoot = value;";
+ void set tFoot(_HTMLTableSectionElementJs value) native "this.tFoot = value;";
- HTMLTableSectionElementJs get tHead() native "return this.tHead;";
+ _HTMLTableSectionElementJs get tHead() native "return this.tHead;";
- void set tHead(HTMLTableSectionElementJs value) native "this.tHead = value;";
+ void set tHead(_HTMLTableSectionElementJs value) native "this.tHead = value;";
String get width() native "return this.width;";
void set width(String value) native "this.width = value;";
- HTMLElementJs createCaption() native;
+ _HTMLElementJs createCaption() native;
- HTMLElementJs createTFoot() native;
+ _HTMLElementJs createTFoot() native;
- HTMLElementJs createTHead() native;
+ _HTMLElementJs createTHead() native;
void deleteCaption() native;
@@ -67,5 +67,5 @@ class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ
void deleteTHead() native;
- HTMLElementJs insertRow(int index) native;
+ _HTMLElementJs insertRow(int index) native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableColElement.dart ('k') | client/dom/generated/src/frog/HTMLTableRowElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698