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

Side by Side Diff: client/dom/generated/src/frog/HTMLTrackElement.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class HTMLTrackElementJS extends HTMLElementJS implements HTMLTrackElement nativ e "*HTMLTrackElement" { 2 class HTMLTrackElementJs extends HTMLElementJs implements HTMLTrackElement nativ e "*HTMLTrackElement" {
3 3
4 static final int ERROR = 3; 4 static final int ERROR = 3;
5 5
6 static final int LOADED = 2; 6 static final int LOADED = 2;
7 7
8 static final int LOADING = 1; 8 static final int LOADING = 1;
9 9
10 static final int NONE = 0; 10 static final int NONE = 0;
11 11
12 bool get isDefault() native "return this.isDefault;"; 12 bool get isDefault() native "return this.isDefault;";
(...skipping 11 matching lines...) Expand all
24 int get readyState() native "return this.readyState;"; 24 int get readyState() native "return this.readyState;";
25 25
26 String get src() native "return this.src;"; 26 String get src() native "return this.src;";
27 27
28 void set src(String value) native "this.src = value;"; 28 void set src(String value) native "this.src = value;";
29 29
30 String get srclang() native "return this.srclang;"; 30 String get srclang() native "return this.srclang;";
31 31
32 void set srclang(String value) native "this.srclang = value;"; 32 void set srclang(String value) native "this.srclang = value;";
33 33
34 TextTrackJS get track() native "return this.track;"; 34 TextTrackJs get track() native "return this.track;";
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTitleElement.dart ('k') | client/dom/generated/src/frog/HTMLUListElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698