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

Unified Diff: client/dom/generated/src/wrapping/_HTMLImageElementWrappingImplementation.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/_HTMLImageElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLImageElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLImageElementWrappingImplementation.dart
deleted file mode 100644
index feaa825b8331935cad2508849b1e97694c51a079..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLImageElementWrappingImplementation.dart
+++ /dev/null
@@ -1,114 +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 _HTMLImageElementWrappingImplementation extends _HTMLElementWrappingImplementation implements HTMLImageElement {
- _HTMLImageElementWrappingImplementation() : super() {}
-
- static create__HTMLImageElementWrappingImplementation() native {
- return new _HTMLImageElementWrappingImplementation();
- }
-
- String get align() { return _get_align(this); }
- static String _get_align(var _this) native;
-
- void set align(String value) { _set_align(this, value); }
- static void _set_align(var _this, String value) native;
-
- String get alt() { return _get_alt(this); }
- static String _get_alt(var _this) native;
-
- void set alt(String value) { _set_alt(this, value); }
- static void _set_alt(var _this, String value) native;
-
- String get border() { return _get_border(this); }
- static String _get_border(var _this) native;
-
- void set border(String value) { _set_border(this, value); }
- static void _set_border(var _this, String value) native;
-
- bool get complete() { return _get_complete(this); }
- static bool _get_complete(var _this) native;
-
- String get crossOrigin() { return _get_crossOrigin(this); }
- static String _get_crossOrigin(var _this) native;
-
- void set crossOrigin(String value) { _set_crossOrigin(this, value); }
- static void _set_crossOrigin(var _this, String value) native;
-
- 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;
-
- 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;
-
- bool get isMap() { return _get_isMap(this); }
- static bool _get_isMap(var _this) native;
-
- void set isMap(bool value) { _set_isMap(this, value); }
- static void _set_isMap(var _this, bool value) native;
-
- String get longDesc() { return _get_longDesc(this); }
- static String _get_longDesc(var _this) native;
-
- void set longDesc(String value) { _set_longDesc(this, value); }
- static void _set_longDesc(var _this, String value) native;
-
- String get lowsrc() { return _get_lowsrc(this); }
- static String _get_lowsrc(var _this) native;
-
- void set lowsrc(String value) { _set_lowsrc(this, value); }
- static void _set_lowsrc(var _this, String value) native;
-
- String get name() { return _get_name(this); }
- static String _get_name(var _this) native;
-
- void set name(String value) { _set_name(this, value); }
- static void _set_name(var _this, String value) native;
-
- int get naturalHeight() { return _get_naturalHeight(this); }
- static int _get_naturalHeight(var _this) native;
-
- int get naturalWidth() { return _get_naturalWidth(this); }
- static int _get_naturalWidth(var _this) native;
-
- String get src() { return _get_src(this); }
- static String _get_src(var _this) native;
-
- void set src(String value) { _set_src(this, value); }
- static void _set_src(var _this, String value) native;
-
- String get useMap() { return _get_useMap(this); }
- static String _get_useMap(var _this) native;
-
- void set useMap(String value) { _set_useMap(this, value); }
- static void _set_useMap(var _this, String 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;
-
- 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;
-
- int get x() { return _get_x(this); }
- static int _get_x(var _this) native;
-
- int get y() { return _get_y(this); }
- static int _get_y(var _this) native;
-
- String get typeName() { return "HTMLImageElement"; }
-}

Powered by Google App Engine
This is Rietveld 408576698