| OLD | NEW |
| 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 _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
TrackCue { | 7 class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
TrackCue { |
| 8 _TextTrackCueWrappingImplementation() : super() {} | 8 _TextTrackCueWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__TextTrackCueWrappingImplementation() native { | 10 static create__TextTrackCueWrappingImplementation() native { |
| 11 return new _TextTrackCueWrappingImplementation(); | 11 return new _TextTrackCueWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get alignment() { return _get__TextTrackCue_alignment(this); } | 14 String get alignment() { return _get_alignment(this); } |
| 15 static String _get__TextTrackCue_alignment(var _this) native; | 15 static String _get_alignment(var _this) native; |
| 16 | 16 |
| 17 String get direction() { return _get__TextTrackCue_direction(this); } | 17 String get direction() { return _get_direction(this); } |
| 18 static String _get__TextTrackCue_direction(var _this) native; | 18 static String _get_direction(var _this) native; |
| 19 | 19 |
| 20 num get endTime() { return _get__TextTrackCue_endTime(this); } | 20 num get endTime() { return _get_endTime(this); } |
| 21 static num _get__TextTrackCue_endTime(var _this) native; | 21 static num _get_endTime(var _this) native; |
| 22 | 22 |
| 23 String get id() { return _get__TextTrackCue_id(this); } | 23 String get id() { return _get_id(this); } |
| 24 static String _get__TextTrackCue_id(var _this) native; | 24 static String _get_id(var _this) native; |
| 25 | 25 |
| 26 int get linePosition() { return _get__TextTrackCue_linePosition(this); } | 26 int get linePosition() { return _get_linePosition(this); } |
| 27 static int _get__TextTrackCue_linePosition(var _this) native; | 27 static int _get_linePosition(var _this) native; |
| 28 | 28 |
| 29 bool get pauseOnExit() { return _get__TextTrackCue_pauseOnExit(this); } | 29 bool get pauseOnExit() { return _get_pauseOnExit(this); } |
| 30 static bool _get__TextTrackCue_pauseOnExit(var _this) native; | 30 static bool _get_pauseOnExit(var _this) native; |
| 31 | 31 |
| 32 int get size() { return _get__TextTrackCue_size(this); } | 32 int get size() { return _get_size(this); } |
| 33 static int _get__TextTrackCue_size(var _this) native; | 33 static int _get_size(var _this) native; |
| 34 | 34 |
| 35 bool get snapToLines() { return _get__TextTrackCue_snapToLines(this); } | 35 bool get snapToLines() { return _get_snapToLines(this); } |
| 36 static bool _get__TextTrackCue_snapToLines(var _this) native; | 36 static bool _get_snapToLines(var _this) native; |
| 37 | 37 |
| 38 num get startTime() { return _get__TextTrackCue_startTime(this); } | 38 num get startTime() { return _get_startTime(this); } |
| 39 static num _get__TextTrackCue_startTime(var _this) native; | 39 static num _get_startTime(var _this) native; |
| 40 | 40 |
| 41 int get textPosition() { return _get__TextTrackCue_textPosition(this); } | 41 int get textPosition() { return _get_textPosition(this); } |
| 42 static int _get__TextTrackCue_textPosition(var _this) native; | 42 static int _get_textPosition(var _this) native; |
| 43 | 43 |
| 44 TextTrack get track() { return _get__TextTrackCue_track(this); } | 44 TextTrack get track() { return _get_track(this); } |
| 45 static TextTrack _get__TextTrackCue_track(var _this) native; | 45 static TextTrack _get_track(var _this) native; |
| 46 | 46 |
| 47 DocumentFragment getCueAsHTML() { | 47 DocumentFragment getCueAsHTML() { |
| 48 return _getCueAsHTML(this); | 48 return _getCueAsHTML(this); |
| 49 } | 49 } |
| 50 static DocumentFragment _getCueAsHTML(receiver) native; | 50 static DocumentFragment _getCueAsHTML(receiver) native; |
| 51 | 51 |
| 52 String getCueAsSource() { | 52 String getCueAsSource() { |
| 53 return _getCueAsSource(this); | 53 return _getCueAsSource(this); |
| 54 } | 54 } |
| 55 static String _getCueAsSource(receiver) native; | 55 static String _getCueAsSource(receiver) native; |
| 56 | 56 |
| 57 String get typeName() { return "TextTrackCue"; } | 57 String get typeName() { return "TextTrackCue"; } |
| 58 } | 58 } |
| OLD | NEW |