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

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

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak 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
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 _HTMLVideoElementWrappingImplementation extends _HTMLMediaElementWrappingI mplementation implements HTMLVideoElement { 7 class _HTMLVideoElementWrappingImplementation extends _HTMLMediaElementWrappingI mplementation implements HTMLVideoElement {
8 _HTMLVideoElementWrappingImplementation() : super() {} 8 _HTMLVideoElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLVideoElementWrappingImplementation() native { 10 static create__HTMLVideoElementWrappingImplementation() native {
11 return new _HTMLVideoElementWrappingImplementation(); 11 return new _HTMLVideoElementWrappingImplementation();
12 } 12 }
13 13
14 int get height() { return _get__HTMLVideoElement_height(this); } 14 int get height() { return _get_height(this); }
15 static int _get__HTMLVideoElement_height(var _this) native; 15 static int _get_height(var _this) native;
16 16
17 void set height(int value) { _set__HTMLVideoElement_height(this, value); } 17 void set height(int value) { _set_height(this, value); }
18 static void _set__HTMLVideoElement_height(var _this, int value) native; 18 static void _set_height(var _this, int value) native;
19 19
20 String get poster() { return _get__HTMLVideoElement_poster(this); } 20 String get poster() { return _get_poster(this); }
21 static String _get__HTMLVideoElement_poster(var _this) native; 21 static String _get_poster(var _this) native;
22 22
23 void set poster(String value) { _set__HTMLVideoElement_poster(this, value); } 23 void set poster(String value) { _set_poster(this, value); }
24 static void _set__HTMLVideoElement_poster(var _this, String value) native; 24 static void _set_poster(var _this, String value) native;
25 25
26 int get videoHeight() { return _get__HTMLVideoElement_videoHeight(this); } 26 int get videoHeight() { return _get_videoHeight(this); }
27 static int _get__HTMLVideoElement_videoHeight(var _this) native; 27 static int _get_videoHeight(var _this) native;
28 28
29 int get videoWidth() { return _get__HTMLVideoElement_videoWidth(this); } 29 int get videoWidth() { return _get_videoWidth(this); }
30 static int _get__HTMLVideoElement_videoWidth(var _this) native; 30 static int _get_videoWidth(var _this) native;
31 31
32 int get webkitDecodedFrameCount() { return _get__HTMLVideoElement_webkitDecode dFrameCount(this); } 32 int get webkitDecodedFrameCount() { return _get_webkitDecodedFrameCount(this); }
33 static int _get__HTMLVideoElement_webkitDecodedFrameCount(var _this) native; 33 static int _get_webkitDecodedFrameCount(var _this) native;
34 34
35 bool get webkitDisplayingFullscreen() { return _get__HTMLVideoElement_webkitDi splayingFullscreen(this); } 35 bool get webkitDisplayingFullscreen() { return _get_webkitDisplayingFullscreen (this); }
36 static bool _get__HTMLVideoElement_webkitDisplayingFullscreen(var _this) nativ e; 36 static bool _get_webkitDisplayingFullscreen(var _this) native;
37 37
38 int get webkitDroppedFrameCount() { return _get__HTMLVideoElement_webkitDroppe dFrameCount(this); } 38 int get webkitDroppedFrameCount() { return _get_webkitDroppedFrameCount(this); }
39 static int _get__HTMLVideoElement_webkitDroppedFrameCount(var _this) native; 39 static int _get_webkitDroppedFrameCount(var _this) native;
40 40
41 bool get webkitSupportsFullscreen() { return _get__HTMLVideoElement_webkitSupp ortsFullscreen(this); } 41 bool get webkitSupportsFullscreen() { return _get_webkitSupportsFullscreen(thi s); }
42 static bool _get__HTMLVideoElement_webkitSupportsFullscreen(var _this) native; 42 static bool _get_webkitSupportsFullscreen(var _this) native;
43 43
44 int get width() { return _get__HTMLVideoElement_width(this); } 44 int get width() { return _get_width(this); }
45 static int _get__HTMLVideoElement_width(var _this) native; 45 static int _get_width(var _this) native;
46 46
47 void set width(int value) { _set__HTMLVideoElement_width(this, value); } 47 void set width(int value) { _set_width(this, value); }
48 static void _set__HTMLVideoElement_width(var _this, int value) native; 48 static void _set_width(var _this, int value) native;
49 49
50 void webkitEnterFullScreen() { 50 void webkitEnterFullScreen() {
51 _webkitEnterFullScreen(this); 51 _webkitEnterFullScreen(this);
52 return; 52 return;
53 } 53 }
54 static void _webkitEnterFullScreen(receiver) native; 54 static void _webkitEnterFullScreen(receiver) native;
55 55
56 void webkitEnterFullscreen() { 56 void webkitEnterFullscreen() {
57 _webkitEnterFullscreen(this); 57 _webkitEnterFullscreen(this);
58 return; 58 return;
59 } 59 }
60 static void _webkitEnterFullscreen(receiver) native; 60 static void _webkitEnterFullscreen(receiver) native;
61 61
62 void webkitExitFullScreen() { 62 void webkitExitFullScreen() {
63 _webkitExitFullScreen(this); 63 _webkitExitFullScreen(this);
64 return; 64 return;
65 } 65 }
66 static void _webkitExitFullScreen(receiver) native; 66 static void _webkitExitFullScreen(receiver) native;
67 67
68 void webkitExitFullscreen() { 68 void webkitExitFullscreen() {
69 _webkitExitFullscreen(this); 69 _webkitExitFullscreen(this);
70 return; 70 return;
71 } 71 }
72 static void _webkitExitFullscreen(receiver) native; 72 static void _webkitExitFullscreen(receiver) native;
73 73
74 String get typeName() { return "HTMLVideoElement"; } 74 String get typeName() { return "HTMLVideoElement"; }
75 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698