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

Side by Side Diff: client/dom/generated/src/wrapping/_TextTrackWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _TextTrackWrappingImplementation extends DOMWrapperBase implements TextTra ck { 7 class _TextTrackWrappingImplementation extends DOMWrapperBase implements TextTra ck {
8 _TextTrackWrappingImplementation() : super() {} 8 _TextTrackWrappingImplementation() : super() {}
9 9
10 static create__TextTrackWrappingImplementation() native { 10 static create__TextTrackWrappingImplementation() native {
11 return new _TextTrackWrappingImplementation(); 11 return new _TextTrackWrappingImplementation();
12 } 12 }
13 13
14 TextTrackCueList get activeCues() { return _get__TextTrack_activeCues(this); } 14 TextTrackCueList get activeCues() { return _get_activeCues(this); }
15 static TextTrackCueList _get__TextTrack_activeCues(var _this) native; 15 static TextTrackCueList _get_activeCues(var _this) native;
16 16
17 TextTrackCueList get cues() { return _get__TextTrack_cues(this); } 17 TextTrackCueList get cues() { return _get_cues(this); }
18 static TextTrackCueList _get__TextTrack_cues(var _this) native; 18 static TextTrackCueList _get_cues(var _this) native;
19 19
20 String get kind() { return _get__TextTrack_kind(this); } 20 String get kind() { return _get_kind(this); }
21 static String _get__TextTrack_kind(var _this) native; 21 static String _get_kind(var _this) native;
22 22
23 String get label() { return _get__TextTrack_label(this); } 23 String get label() { return _get_label(this); }
24 static String _get__TextTrack_label(var _this) native; 24 static String _get_label(var _this) native;
25 25
26 String get language() { return _get__TextTrack_language(this); } 26 String get language() { return _get_language(this); }
27 static String _get__TextTrack_language(var _this) native; 27 static String _get_language(var _this) native;
28 28
29 int get mode() { return _get__TextTrack_mode(this); } 29 int get mode() { return _get_mode(this); }
30 static int _get__TextTrack_mode(var _this) native; 30 static int _get_mode(var _this) native;
31 31
32 void set mode(int value) { _set__TextTrack_mode(this, value); } 32 void set mode(int value) { _set_mode(this, value); }
33 static void _set__TextTrack_mode(var _this, int value) native; 33 static void _set_mode(var _this, int value) native;
34 34
35 int get readyState() { return _get__TextTrack_readyState(this); } 35 int get readyState() { return _get_readyState(this); }
36 static int _get__TextTrack_readyState(var _this) native; 36 static int _get_readyState(var _this) native;
37 37
38 void addCue(TextTrackCue cue) { 38 void addCue(TextTrackCue cue) {
39 _addCue(this, cue); 39 _addCue(this, cue);
40 return; 40 return;
41 } 41 }
42 static void _addCue(receiver, cue) native; 42 static void _addCue(receiver, cue) native;
43 43
44 void removeCue(TextTrackCue cue) { 44 void removeCue(TextTrackCue cue) {
45 _removeCue(this, cue); 45 _removeCue(this, cue);
46 return; 46 return;
47 } 47 }
48 static void _removeCue(receiver, cue) native; 48 static void _removeCue(receiver, cue) native;
49 49
50 String get typeName() { return "TextTrack"; } 50 String get typeName() { return "TextTrack"; }
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698