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

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

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage 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
(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 _TextTrackWrappingImplementation extends DOMWrapperBase implements TextTra ck {
8 _TextTrackWrappingImplementation() : super() {}
9
10 static create__TextTrackWrappingImplementation() native {
11 return new _TextTrackWrappingImplementation();
12 }
13
14 TextTrackCueList get activeCues() { return _get__TextTrack_activeCues(this); }
15 static TextTrackCueList _get__TextTrack_activeCues(var _this) native;
16
17 TextTrackCueList get cues() { return _get__TextTrack_cues(this); }
18 static TextTrackCueList _get__TextTrack_cues(var _this) native;
19
20 String get kind() { return _get__TextTrack_kind(this); }
21 static String _get__TextTrack_kind(var _this) native;
22
23 String get label() { return _get__TextTrack_label(this); }
24 static String _get__TextTrack_label(var _this) native;
25
26 String get language() { return _get__TextTrack_language(this); }
27 static String _get__TextTrack_language(var _this) native;
28
29 int get mode() { return _get__TextTrack_mode(this); }
30 static int _get__TextTrack_mode(var _this) native;
31
32 void set mode(int value) { _set__TextTrack_mode(this, value); }
33 static void _set__TextTrack_mode(var _this, int value) native;
34
35 int get readyState() { return _get__TextTrack_readyState(this); }
36 static int _get__TextTrack_readyState(var _this) native;
37
38 void addCue(TextTrackCue cue) {
39 _addCue(this, cue);
40 return;
41 }
42 static void _addCue(receiver, cue) native;
43
44 void removeCue(TextTrackCue cue) {
45 _removeCue(this, cue);
46 return;
47 }
48 static void _removeCue(receiver, cue) native;
49
50 String get typeName() { return "TextTrack"; }
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698