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

Side by Side Diff: client/dom/generated/src/frog/MediaList.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, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class MediaListJs extends DOMTypeJs implements MediaList native "*MediaList" { 2 class _MediaListJs extends _DOMTypeJs implements MediaList native "*MediaList" {
3 3
4 int get length() native "return this.length;"; 4 int get length() native "return this.length;";
5 5
6 String get mediaText() native "return this.mediaText;"; 6 String get mediaText() native "return this.mediaText;";
7 7
8 void set mediaText(String value) native "this.mediaText = value;"; 8 void set mediaText(String value) native "this.mediaText = value;";
9 9
10 String operator[](int index) native "return this[index];"; 10 String operator[](int index) native "return this[index];";
11 11
12 void operator[]=(int index, String value) { 12 void operator[]=(int index, String value) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 _Lists.getRange(this, start, length, <String>[]); 79 _Lists.getRange(this, start, length, <String>[]);
80 80
81 // -- end List<String> mixins. 81 // -- end List<String> mixins.
82 82
83 void appendMedium(String newMedium) native; 83 void appendMedium(String newMedium) native;
84 84
85 void deleteMedium(String oldMedium) native; 85 void deleteMedium(String oldMedium) native;
86 86
87 String item(int index) native; 87 String item(int index) native;
88 } 88 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/MediaError.dart ('k') | client/dom/generated/src/frog/MediaQueryList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698