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

Unified Diff: client/dom/generated/src/frog/NamedNodeMap.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/MutationRecord.dart ('k') | client/dom/generated/src/frog/Navigator.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/NamedNodeMap.dart
diff --git a/client/dom/generated/src/frog/NamedNodeMap.dart b/client/dom/generated/src/frog/NamedNodeMap.dart
index 734790fb0c636756923d32c2009bbfe8b3f20f04..85f46cade94f2b5d606b03ee75916bc9ddd7ea3a 100644
--- a/client/dom/generated/src/frog/NamedNodeMap.dart
+++ b/client/dom/generated/src/frog/NamedNodeMap.dart
@@ -1,11 +1,11 @@
-class NamedNodeMapJs extends DOMTypeJs implements NamedNodeMap native "*NamedNodeMap" {
+class _NamedNodeMapJs extends _DOMTypeJs implements NamedNodeMap native "*NamedNodeMap" {
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,17 +76,17 @@ class NamedNodeMapJs extends DOMTypeJs implements NamedNodeMap native "*NamedNod
// -- end List<Node> mixins.
- NodeJs getNamedItem(String name) native;
+ _NodeJs getNamedItem(String name) native;
- NodeJs getNamedItemNS(String namespaceURI, String localName) native;
+ _NodeJs getNamedItemNS(String namespaceURI, String localName) native;
- NodeJs item(int index) native;
+ _NodeJs item(int index) native;
- NodeJs removeNamedItem(String name) native;
+ _NodeJs removeNamedItem(String name) native;
- NodeJs removeNamedItemNS(String namespaceURI, String localName) native;
+ _NodeJs removeNamedItemNS(String namespaceURI, String localName) native;
- NodeJs setNamedItem(NodeJs node) native;
+ _NodeJs setNamedItem(_NodeJs node) native;
- NodeJs setNamedItemNS(NodeJs node) native;
+ _NodeJs setNamedItemNS(_NodeJs node) native;
}
« no previous file with comments | « client/dom/generated/src/frog/MutationRecord.dart ('k') | client/dom/generated/src/frog/Navigator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698