| Index: client/html/generated/src/wrapping/_TextTrackCueListWrappingImplementation.dart
|
| diff --git a/client/html/generated/src/wrapping/_TextTrackCueListWrappingImplementation.dart b/client/html/generated/src/wrapping/_TextTrackCueListWrappingImplementation.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..41d55dc99c5ffacdaf78ada1e1847cca9a5a4e06
|
| --- /dev/null
|
| +++ b/client/html/generated/src/wrapping/_TextTrackCueListWrappingImplementation.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +class TextTrackCueListWrappingImplementation extends DOMWrapperBase implements TextTrackCueList {
|
| + TextTrackCueListWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
|
| +
|
| + int get length() { return _ptr.length; }
|
| +
|
| + TextTrackCue getCueById(String id) {
|
| + return LevelDom.wrapTextTrackCue(_ptr.getCueById(id));
|
| + }
|
| +
|
| + TextTrackCue item(int index) {
|
| + return LevelDom.wrapTextTrackCue(_ptr.item(index));
|
| + }
|
| +}
|
|
|