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

Unified 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 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
deleted file mode 100644
index 688f308bb2afc1c03739fd2154619c0565d68f09..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLVideoElementWrappingImplementation.dart
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class _HTMLVideoElementWrappingImplementation extends _HTMLMediaElementWrappingImplementation implements HTMLVideoElement {
- _HTMLVideoElementWrappingImplementation() : super() {}
-
- static create__HTMLVideoElementWrappingImplementation() native {
- return new _HTMLVideoElementWrappingImplementation();
- }
-
- int get height() { return _get_height(this); }
- static int _get_height(var _this) native;
-
- void set height(int value) { _set_height(this, value); }
- static void _set_height(var _this, int value) native;
-
- String get poster() { return _get_poster(this); }
- static String _get_poster(var _this) native;
-
- void set poster(String value) { _set_poster(this, value); }
- static void _set_poster(var _this, String value) native;
-
- int get videoHeight() { return _get_videoHeight(this); }
- static int _get_videoHeight(var _this) native;
-
- int get videoWidth() { return _get_videoWidth(this); }
- static int _get_videoWidth(var _this) native;
-
- int get webkitDecodedFrameCount() { return _get_webkitDecodedFrameCount(this); }
- static int _get_webkitDecodedFrameCount(var _this) native;
-
- bool get webkitDisplayingFullscreen() { return _get_webkitDisplayingFullscreen(this); }
- static bool _get_webkitDisplayingFullscreen(var _this) native;
-
- int get webkitDroppedFrameCount() { return _get_webkitDroppedFrameCount(this); }
- static int _get_webkitDroppedFrameCount(var _this) native;
-
- bool get webkitSupportsFullscreen() { return _get_webkitSupportsFullscreen(this); }
- static bool _get_webkitSupportsFullscreen(var _this) native;
-
- int get width() { return _get_width(this); }
- static int _get_width(var _this) native;
-
- void set width(int value) { _set_width(this, value); }
- static void _set_width(var _this, int value) native;
-
- void webkitEnterFullScreen() {
- _webkitEnterFullScreen(this);
- return;
- }
- static void _webkitEnterFullScreen(receiver) native;
-
- void webkitEnterFullscreen() {
- _webkitEnterFullscreen(this);
- return;
- }
- static void _webkitEnterFullscreen(receiver) native;
-
- void webkitExitFullScreen() {
- _webkitExitFullScreen(this);
- return;
- }
- static void _webkitExitFullScreen(receiver) native;
-
- void webkitExitFullscreen() {
- _webkitExitFullscreen(this);
- return;
- }
- static void _webkitExitFullscreen(receiver) native;
-
- String get typeName() { return "HTMLVideoElement"; }
-}

Powered by Google App Engine
This is Rietveld 408576698