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

Unified Diff: client/dom/generated/src/frog/TextTrackCue.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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/TextTrack.dart ('k') | client/dom/generated/src/frog/TextTrackCueList.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/TextTrackCue.dart
diff --git a/client/dom/generated/src/frog/TextTrackCue.dart b/client/dom/generated/src/frog/TextTrackCue.dart
index 2a8dcef85d44853473e9abe2d531434f26fd2851..7b1c15d88490e271e5978dcff73051d65e249321 100644
--- a/client/dom/generated/src/frog/TextTrackCue.dart
+++ b/client/dom/generated/src/frog/TextTrackCue.dart
@@ -1,33 +1,59 @@
class TextTrackCue native "*TextTrackCue" {
- String alignment;
+ String get alignment() native "return this.alignment;";
- String direction;
+ void set alignment(String value) native "this.alignment = value;";
- num endTime;
+ String get direction() native "return this.direction;";
- String id;
+ void set direction(String value) native "this.direction = value;";
- int linePosition;
+ num get endTime() native "return this.endTime;";
- EventListener onenter;
+ void set endTime(num value) native "this.endTime = value;";
- EventListener onexit;
+ String get id() native "return this.id;";
- bool pauseOnExit;
+ void set id(String value) native "this.id = value;";
- int size;
+ int get linePosition() native "return this.linePosition;";
- bool snapToLines;
+ void set linePosition(int value) native "this.linePosition = value;";
- num startTime;
+ EventListener get onenter() native "return this.onenter;";
- String text;
+ void set onenter(EventListener value) native "this.onenter = value;";
- int textPosition;
+ EventListener get onexit() native "return this.onexit;";
- TextTrack track;
+ void set onexit(EventListener value) native "this.onexit = value;";
+
+ bool get pauseOnExit() native "return this.pauseOnExit;";
+
+ void set pauseOnExit(bool value) native "this.pauseOnExit = value;";
+
+ int get size() native "return this.size;";
+
+ void set size(int value) native "this.size = value;";
+
+ bool get snapToLines() native "return this.snapToLines;";
+
+ void set snapToLines(bool value) native "this.snapToLines = value;";
+
+ num get startTime() native "return this.startTime;";
+
+ void set startTime(num value) native "this.startTime = value;";
+
+ String get text() native "return this.text;";
+
+ void set text(String value) native "this.text = value;";
+
+ int get textPosition() native "return this.textPosition;";
+
+ void set textPosition(int value) native "this.textPosition = value;";
+
+ TextTrack get track() native "return this.track;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« 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