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

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

Issue 9619015: Regenerate dart:dom and dart:html bindings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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 _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_alignment(this); } 14 String get align() { return _get_align(this); }
15 static String _get_alignment(var _this) native; 15 static String _get_align(var _this) native;
16 16
17 void set alignment(String value) { _set_alignment(this, value); } 17 void set align(String value) { _set_align(this, value); }
18 static void _set_alignment(var _this, String value) native; 18 static void _set_align(var _this, String value) native;
19
20 String get direction() { return _get_direction(this); }
21 static String _get_direction(var _this) native;
22
23 void set direction(String value) { _set_direction(this, value); }
24 static void _set_direction(var _this, String value) native;
25 19
26 num get endTime() { return _get_endTime(this); } 20 num get endTime() { return _get_endTime(this); }
27 static num _get_endTime(var _this) native; 21 static num _get_endTime(var _this) native;
28 22
29 void set endTime(num value) { _set_endTime(this, value); } 23 void set endTime(num value) { _set_endTime(this, value); }
30 static void _set_endTime(var _this, num value) native; 24 static void _set_endTime(var _this, num value) native;
31 25
32 String get id() { return _get_id(this); } 26 String get id() { return _get_id(this); }
33 static String _get_id(var _this) native; 27 static String _get_id(var _this) native;
34 28
35 void set id(String value) { _set_id(this, value); } 29 void set id(String value) { _set_id(this, value); }
36 static void _set_id(var _this, String value) native; 30 static void _set_id(var _this, String value) native;
37 31
38 int get linePosition() { return _get_linePosition(this); } 32 int get line() { return _get_line(this); }
39 static int _get_linePosition(var _this) native; 33 static int _get_line(var _this) native;
40 34
41 void set linePosition(int value) { _set_linePosition(this, value); } 35 void set line(int value) { _set_line(this, value); }
42 static void _set_linePosition(var _this, int value) native; 36 static void _set_line(var _this, int value) native;
43 37
44 EventListener get onenter() { return _get_onenter(this); } 38 EventListener get onenter() { return _get_onenter(this); }
45 static EventListener _get_onenter(var _this) native; 39 static EventListener _get_onenter(var _this) native;
46 40
47 void set onenter(EventListener value) { _set_onenter(this, value); } 41 void set onenter(EventListener value) { _set_onenter(this, value); }
48 static void _set_onenter(var _this, EventListener value) native; 42 static void _set_onenter(var _this, EventListener value) native;
49 43
50 EventListener get onexit() { return _get_onexit(this); } 44 EventListener get onexit() { return _get_onexit(this); }
51 static EventListener _get_onexit(var _this) native; 45 static EventListener _get_onexit(var _this) native;
52 46
53 void set onexit(EventListener value) { _set_onexit(this, value); } 47 void set onexit(EventListener value) { _set_onexit(this, value); }
54 static void _set_onexit(var _this, EventListener value) native; 48 static void _set_onexit(var _this, EventListener value) native;
55 49
56 bool get pauseOnExit() { return _get_pauseOnExit(this); } 50 bool get pauseOnExit() { return _get_pauseOnExit(this); }
57 static bool _get_pauseOnExit(var _this) native; 51 static bool _get_pauseOnExit(var _this) native;
58 52
59 void set pauseOnExit(bool value) { _set_pauseOnExit(this, value); } 53 void set pauseOnExit(bool value) { _set_pauseOnExit(this, value); }
60 static void _set_pauseOnExit(var _this, bool value) native; 54 static void _set_pauseOnExit(var _this, bool value) native;
61 55
56 int get position() { return _get_position(this); }
57 static int _get_position(var _this) native;
58
59 void set position(int value) { _set_position(this, value); }
60 static void _set_position(var _this, int value) native;
61
62 int get size() { return _get_size(this); } 62 int get size() { return _get_size(this); }
63 static int _get_size(var _this) native; 63 static int _get_size(var _this) native;
64 64
65 void set size(int value) { _set_size(this, value); } 65 void set size(int value) { _set_size(this, value); }
66 static void _set_size(var _this, int value) native; 66 static void _set_size(var _this, int value) native;
67 67
68 bool get snapToLines() { return _get_snapToLines(this); } 68 bool get snapToLines() { return _get_snapToLines(this); }
69 static bool _get_snapToLines(var _this) native; 69 static bool _get_snapToLines(var _this) native;
70 70
71 void set snapToLines(bool value) { _set_snapToLines(this, value); } 71 void set snapToLines(bool value) { _set_snapToLines(this, value); }
72 static void _set_snapToLines(var _this, bool value) native; 72 static void _set_snapToLines(var _this, bool value) native;
73 73
74 num get startTime() { return _get_startTime(this); } 74 num get startTime() { return _get_startTime(this); }
75 static num _get_startTime(var _this) native; 75 static num _get_startTime(var _this) native;
76 76
77 void set startTime(num value) { _set_startTime(this, value); } 77 void set startTime(num value) { _set_startTime(this, value); }
78 static void _set_startTime(var _this, num value) native; 78 static void _set_startTime(var _this, num value) native;
79 79
80 String get text() { return _get_text(this); } 80 String get text() { return _get_text(this); }
81 static String _get_text(var _this) native; 81 static String _get_text(var _this) native;
82 82
83 void set text(String value) { _set_text(this, value); } 83 void set text(String value) { _set_text(this, value); }
84 static void _set_text(var _this, String value) native; 84 static void _set_text(var _this, String value) native;
85 85
86 int get textPosition() { return _get_textPosition(this); }
87 static int _get_textPosition(var _this) native;
88
89 void set textPosition(int value) { _set_textPosition(this, value); }
90 static void _set_textPosition(var _this, int value) native;
91
92 TextTrack get track() { return _get_track(this); } 86 TextTrack get track() { return _get_track(this); }
93 static TextTrack _get_track(var _this) native; 87 static TextTrack _get_track(var _this) native;
94 88
89 String get vertical() { return _get_vertical(this); }
90 static String _get_vertical(var _this) native;
91
92 void set vertical(String value) { _set_vertical(this, value); }
93 static void _set_vertical(var _this, String value) native;
94
95 void addEventListener(String type, EventListener listener, [bool useCapture = null]) { 95 void addEventListener(String type, EventListener listener, [bool useCapture = null]) {
96 if (useCapture === null) { 96 if (useCapture === null) {
97 _addEventListener(this, type, listener); 97 _addEventListener(this, type, listener);
98 return; 98 return;
99 } else { 99 } else {
100 _addEventListener_2(this, type, listener, useCapture); 100 _addEventListener_2(this, type, listener, useCapture);
101 return; 101 return;
102 } 102 }
103 } 103 }
104 static void _addEventListener(receiver, type, listener) native; 104 static void _addEventListener(receiver, type, listener) native;
(...skipping 16 matching lines...) Expand all
121 } else { 121 } else {
122 _removeEventListener_2(this, type, listener, useCapture); 122 _removeEventListener_2(this, type, listener, useCapture);
123 return; 123 return;
124 } 124 }
125 } 125 }
126 static void _removeEventListener(receiver, type, listener) native; 126 static void _removeEventListener(receiver, type, listener) native;
127 static void _removeEventListener_2(receiver, type, listener, useCapture) nativ e; 127 static void _removeEventListener_2(receiver, type, listener, useCapture) nativ e;
128 128
129 String get typeName() { return "TextTrackCue"; } 129 String get typeName() { return "TextTrackCue"; }
130 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698