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

Unified Diff: client/dom/generated/src/wrapping/_HTMLMarqueeElementWrappingImplementation.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/_HTMLMarqueeElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLMarqueeElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLMarqueeElementWrappingImplementation.dart
deleted file mode 100644
index e0be307a875fbd8ad0127d3300cb865497a30d29..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLMarqueeElementWrappingImplementation.dart
+++ /dev/null
@@ -1,93 +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 _HTMLMarqueeElementWrappingImplementation extends _HTMLElementWrappingImplementation implements HTMLMarqueeElement {
- _HTMLMarqueeElementWrappingImplementation() : super() {}
-
- static create__HTMLMarqueeElementWrappingImplementation() native {
- return new _HTMLMarqueeElementWrappingImplementation();
- }
-
- String get behavior() { return _get_behavior(this); }
- static String _get_behavior(var _this) native;
-
- void set behavior(String value) { _set_behavior(this, value); }
- static void _set_behavior(var _this, String value) native;
-
- String get bgColor() { return _get_bgColor(this); }
- static String _get_bgColor(var _this) native;
-
- void set bgColor(String value) { _set_bgColor(this, value); }
- static void _set_bgColor(var _this, String value) native;
-
- String get direction() { return _get_direction(this); }
- static String _get_direction(var _this) native;
-
- void set direction(String value) { _set_direction(this, value); }
- static void _set_direction(var _this, String value) native;
-
- String get height() { return _get_height(this); }
- static String _get_height(var _this) native;
-
- void set height(String value) { _set_height(this, value); }
- static void _set_height(var _this, String value) native;
-
- int get hspace() { return _get_hspace(this); }
- static int _get_hspace(var _this) native;
-
- void set hspace(int value) { _set_hspace(this, value); }
- static void _set_hspace(var _this, int value) native;
-
- int get loop() { return _get_loop(this); }
- static int _get_loop(var _this) native;
-
- void set loop(int value) { _set_loop(this, value); }
- static void _set_loop(var _this, int value) native;
-
- int get scrollAmount() { return _get_scrollAmount(this); }
- static int _get_scrollAmount(var _this) native;
-
- void set scrollAmount(int value) { _set_scrollAmount(this, value); }
- static void _set_scrollAmount(var _this, int value) native;
-
- int get scrollDelay() { return _get_scrollDelay(this); }
- static int _get_scrollDelay(var _this) native;
-
- void set scrollDelay(int value) { _set_scrollDelay(this, value); }
- static void _set_scrollDelay(var _this, int value) native;
-
- bool get trueSpeed() { return _get_trueSpeed(this); }
- static bool _get_trueSpeed(var _this) native;
-
- void set trueSpeed(bool value) { _set_trueSpeed(this, value); }
- static void _set_trueSpeed(var _this, bool value) native;
-
- int get vspace() { return _get_vspace(this); }
- static int _get_vspace(var _this) native;
-
- void set vspace(int value) { _set_vspace(this, value); }
- static void _set_vspace(var _this, int value) native;
-
- String get width() { return _get_width(this); }
- static String _get_width(var _this) native;
-
- void set width(String value) { _set_width(this, value); }
- static void _set_width(var _this, String value) native;
-
- void start() {
- _start(this);
- return;
- }
- static void _start(receiver) native;
-
- void stop() {
- _stop(this);
- return;
- }
- static void _stop(receiver) native;
-
- String get typeName() { return "HTMLMarqueeElement"; }
-}

Powered by Google App Engine
This is Rietveld 408576698