| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 class _TextTrackCueListWrappingImplementation extends DOMWrapperBase implements
TextTrackCueList { |
| 8 _TextTrackCueListWrappingImplementation() : super() {} |
| 9 |
| 10 static create__TextTrackCueListWrappingImplementation() native { |
| 11 return new _TextTrackCueListWrappingImplementation(); |
| 12 } |
| 13 |
| 14 int get length() { return _get__TextTrackCueList_length(this); } |
| 15 static int _get__TextTrackCueList_length(var _this) native; |
| 16 |
| 17 TextTrackCue getCueById(String id) { |
| 18 return _getCueById(this, id); |
| 19 } |
| 20 static TextTrackCue _getCueById(receiver, id) native; |
| 21 |
| 22 TextTrackCue item(int index) { |
| 23 return _item(this, index); |
| 24 } |
| 25 static TextTrackCue _item(receiver, index) native; |
| 26 |
| 27 String get typeName() { return "TextTrackCueList"; } |
| 28 } |
| OLD | NEW |