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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart
index e562ddc38e3c642412a09d86f77a90741d67441e..688f308bb2afc1c03739fd2154619c0565d68f09 100644
--- a/client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart
@@ -11,41 +11,41 @@ class _HTMLVideoElementWrappingImplementation extends _HTMLMediaElementWrappingI
return new _HTMLVideoElementWrappingImplementation();
}
- int get height() { return _get__HTMLVideoElement_height(this); }
- static int _get__HTMLVideoElement_height(var _this) native;
+ int get height() { return _get_height(this); }
+ static int _get_height(var _this) native;
- void set height(int value) { _set__HTMLVideoElement_height(this, value); }
- static void _set__HTMLVideoElement_height(var _this, int value) native;
+ void set height(int value) { _set_height(this, value); }
+ static void _set_height(var _this, int value) native;
- String get poster() { return _get__HTMLVideoElement_poster(this); }
- static String _get__HTMLVideoElement_poster(var _this) native;
+ String get poster() { return _get_poster(this); }
+ static String _get_poster(var _this) native;
- void set poster(String value) { _set__HTMLVideoElement_poster(this, value); }
- static void _set__HTMLVideoElement_poster(var _this, String value) native;
+ void set poster(String value) { _set_poster(this, value); }
+ static void _set_poster(var _this, String value) native;
- int get videoHeight() { return _get__HTMLVideoElement_videoHeight(this); }
- static int _get__HTMLVideoElement_videoHeight(var _this) native;
+ int get videoHeight() { return _get_videoHeight(this); }
+ static int _get_videoHeight(var _this) native;
- int get videoWidth() { return _get__HTMLVideoElement_videoWidth(this); }
- static int _get__HTMLVideoElement_videoWidth(var _this) native;
+ int get videoWidth() { return _get_videoWidth(this); }
+ static int _get_videoWidth(var _this) native;
- int get webkitDecodedFrameCount() { return _get__HTMLVideoElement_webkitDecodedFrameCount(this); }
- static int _get__HTMLVideoElement_webkitDecodedFrameCount(var _this) native;
+ int get webkitDecodedFrameCount() { return _get_webkitDecodedFrameCount(this); }
+ static int _get_webkitDecodedFrameCount(var _this) native;
- bool get webkitDisplayingFullscreen() { return _get__HTMLVideoElement_webkitDisplayingFullscreen(this); }
- static bool _get__HTMLVideoElement_webkitDisplayingFullscreen(var _this) native;
+ bool get webkitDisplayingFullscreen() { return _get_webkitDisplayingFullscreen(this); }
+ static bool _get_webkitDisplayingFullscreen(var _this) native;
- int get webkitDroppedFrameCount() { return _get__HTMLVideoElement_webkitDroppedFrameCount(this); }
- static int _get__HTMLVideoElement_webkitDroppedFrameCount(var _this) native;
+ int get webkitDroppedFrameCount() { return _get_webkitDroppedFrameCount(this); }
+ static int _get_webkitDroppedFrameCount(var _this) native;
- bool get webkitSupportsFullscreen() { return _get__HTMLVideoElement_webkitSupportsFullscreen(this); }
- static bool _get__HTMLVideoElement_webkitSupportsFullscreen(var _this) native;
+ bool get webkitSupportsFullscreen() { return _get_webkitSupportsFullscreen(this); }
+ static bool _get_webkitSupportsFullscreen(var _this) native;
- int get width() { return _get__HTMLVideoElement_width(this); }
- static int _get__HTMLVideoElement_width(var _this) native;
+ int get width() { return _get_width(this); }
+ static int _get_width(var _this) native;
- void set width(int value) { _set__HTMLVideoElement_width(this, value); }
- static void _set__HTMLVideoElement_width(var _this, int value) native;
+ void set width(int value) { _set_width(this, value); }
+ static void _set_width(var _this, int value) native;
void webkitEnterFullScreen() {
_webkitEnterFullScreen(this);

Powered by Google App Engine
This is Rietveld 408576698