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

Unified Diff: client/dom/generated/src/frog/HTMLCollection.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/HTMLCollection.dart
diff --git a/client/dom/generated/src/frog/HTMLCollection.dart b/client/dom/generated/src/frog/HTMLCollection.dart
index 7871c43991ce307d55312ad85a39d6f93932f546..0f95c9c6c7102c907fce51030c6d3406be9bd7cf 100644
--- a/client/dom/generated/src/frog/HTMLCollection.dart
+++ b/client/dom/generated/src/frog/HTMLCollection.dart
@@ -1,11 +1,11 @@
-class HTMLCollectionJs extends DOMTypeJs implements HTMLCollection native "*HTMLCollection" {
+class _HTMLCollectionJs extends _DOMTypeJs implements HTMLCollection native "*HTMLCollection" {
int get length() native "return this.length;";
- NodeJs operator[](int index) native "return this[index];";
+ _NodeJs operator[](int index) native "return this[index];";
- void operator[]=(int index, NodeJs value) {
+ void operator[]=(int index, _NodeJs value) {
throw new UnsupportedOperationException("Cannot assign element of immutable List.");
}
// -- start List<Node> mixins.
@@ -76,7 +76,7 @@ class HTMLCollectionJs extends DOMTypeJs implements HTMLCollection native "*HTML
// -- end List<Node> mixins.
- NodeJs item(int index) native;
+ _NodeJs item(int index) native;
- NodeJs namedItem(String name) native;
+ _NodeJs namedItem(String name) native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLCanvasElement.dart ('k') | client/dom/generated/src/frog/HTMLContentElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698