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

Unified Diff: client/dom/generated/src/frog/TextTrack.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/TextMetrics.dart ('k') | client/dom/generated/src/frog/TextTrackCue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/TextTrack.dart
diff --git a/client/dom/generated/src/frog/TextTrack.dart b/client/dom/generated/src/frog/TextTrack.dart
index 28743c23efe096664e284233eba56a722e4a9f69..6f75a6e964c014774f79cce35732f2832b5e0531 100644
--- a/client/dom/generated/src/frog/TextTrack.dart
+++ b/client/dom/generated/src/frog/TextTrack.dart
@@ -7,19 +7,23 @@ class TextTrack native "*TextTrack" {
static final int SHOWING = 2;
- TextTrackCueList activeCues;
+ TextTrackCueList get activeCues() native "return this.activeCues;";
- TextTrackCueList cues;
+ TextTrackCueList get cues() native "return this.cues;";
- String kind;
+ String get kind() native "return this.kind;";
- String label;
+ String get label() native "return this.label;";
- String language;
+ String get language() native "return this.language;";
- int mode;
+ int get mode() native "return this.mode;";
- EventListener oncuechange;
+ void set mode(int value) native "this.mode = value;";
+
+ EventListener get oncuechange() native "return this.oncuechange;";
+
+ void set oncuechange(EventListener value) native "this.oncuechange = value;";
void addCue(TextTrackCue cue) native;
« no previous file with comments | « client/dom/generated/src/frog/TextMetrics.dart ('k') | client/dom/generated/src/frog/TextTrackCue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698