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

Side by Side Diff: client/dom/generated/src/frog/TextTrackCue.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 TextTrackCueJS implements TextTrackCue native "*TextTrackCue" { 2 class TextTrackCueJs extends DOMTypeJs implements TextTrackCue native "*TextTrac kCue" {
3 3
4 String get alignment() native "return this.alignment;"; 4 String get alignment() native "return this.alignment;";
5 5
6 void set alignment(String value) native "this.alignment = value;"; 6 void set alignment(String value) native "this.alignment = value;";
7 7
8 String get direction() native "return this.direction;"; 8 String get direction() native "return this.direction;";
9 9
10 void set direction(String value) native "this.direction = value;"; 10 void set direction(String value) native "this.direction = value;";
11 11
12 num get endTime() native "return this.endTime;"; 12 num get endTime() native "return this.endTime;";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void set startTime(num value) native "this.startTime = value;"; 46 void set startTime(num value) native "this.startTime = value;";
47 47
48 String get text() native "return this.text;"; 48 String get text() native "return this.text;";
49 49
50 void set text(String value) native "this.text = value;"; 50 void set text(String value) native "this.text = value;";
51 51
52 int get textPosition() native "return this.textPosition;"; 52 int get textPosition() native "return this.textPosition;";
53 53
54 void set textPosition(int value) native "this.textPosition = value;"; 54 void set textPosition(int value) native "this.textPosition = value;";
55 55
56 TextTrackJS get track() native "return this.track;"; 56 TextTrackJs get track() native "return this.track;";
57 57
58 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 58 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
59 59
60 bool dispatchEvent(EventJS evt) native; 60 bool dispatchEvent(EventJs evt) native;
61 61
62 DocumentFragmentJS getCueAsHTML() native; 62 DocumentFragmentJs getCueAsHTML() native;
63 63
64 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 64 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
65
66 var dartObjectLocalStorage;
67
68 String get typeName() native;
69 } 65 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/TextTrack.dart ('k') | client/dom/generated/src/frog/TextTrackCueList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698