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

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

Issue 9663027: Remove generated directories with 100s of files. (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
(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 _HTMLVideoElementWrappingImplementation extends _HTMLMediaElementWrappingI mplementation implements HTMLVideoElement {
8 _HTMLVideoElementWrappingImplementation() : super() {}
9
10 static create__HTMLVideoElementWrappingImplementation() native {
11 return new _HTMLVideoElementWrappingImplementation();
12 }
13
14 int get height() { return _get_height(this); }
15 static int _get_height(var _this) native;
16
17 void set height(int value) { _set_height(this, value); }
18 static void _set_height(var _this, int value) native;
19
20 String get poster() { return _get_poster(this); }
21 static String _get_poster(var _this) native;
22
23 void set poster(String value) { _set_poster(this, value); }
24 static void _set_poster(var _this, String value) native;
25
26 int get videoHeight() { return _get_videoHeight(this); }
27 static int _get_videoHeight(var _this) native;
28
29 int get videoWidth() { return _get_videoWidth(this); }
30 static int _get_videoWidth(var _this) native;
31
32 int get webkitDecodedFrameCount() { return _get_webkitDecodedFrameCount(this); }
33 static int _get_webkitDecodedFrameCount(var _this) native;
34
35 bool get webkitDisplayingFullscreen() { return _get_webkitDisplayingFullscreen (this); }
36 static bool _get_webkitDisplayingFullscreen(var _this) native;
37
38 int get webkitDroppedFrameCount() { return _get_webkitDroppedFrameCount(this); }
39 static int _get_webkitDroppedFrameCount(var _this) native;
40
41 bool get webkitSupportsFullscreen() { return _get_webkitSupportsFullscreen(thi s); }
42 static bool _get_webkitSupportsFullscreen(var _this) native;
43
44 int get width() { return _get_width(this); }
45 static int _get_width(var _this) native;
46
47 void set width(int value) { _set_width(this, value); }
48 static void _set_width(var _this, int value) native;
49
50 void webkitEnterFullScreen() {
51 _webkitEnterFullScreen(this);
52 return;
53 }
54 static void _webkitEnterFullScreen(receiver) native;
55
56 void webkitEnterFullscreen() {
57 _webkitEnterFullscreen(this);
58 return;
59 }
60 static void _webkitEnterFullscreen(receiver) native;
61
62 void webkitExitFullScreen() {
63 _webkitExitFullScreen(this);
64 return;
65 }
66 static void _webkitExitFullScreen(receiver) native;
67
68 void webkitExitFullscreen() {
69 _webkitExitFullscreen(this);
70 return;
71 }
72 static void _webkitExitFullscreen(receiver) native;
73
74 String get typeName() { return "HTMLVideoElement"; }
75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698