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

Unified Diff: client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.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/_HTMLOutputElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart
deleted file mode 100644
index a4e40a0d719081a03fb17a480552e0c485725225..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLOutputElementWrappingImplementation.dart
+++ /dev/null
@@ -1,68 +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 _HTMLOutputElementWrappingImplementation extends _HTMLElementWrappingImplementation implements HTMLOutputElement {
- _HTMLOutputElementWrappingImplementation() : super() {}
-
- static create__HTMLOutputElementWrappingImplementation() native {
- return new _HTMLOutputElementWrappingImplementation();
- }
-
- String get defaultValue() { return _get_defaultValue(this); }
- static String _get_defaultValue(var _this) native;
-
- void set defaultValue(String value) { _set_defaultValue(this, value); }
- static void _set_defaultValue(var _this, String value) native;
-
- HTMLFormElement get form() { return _get_form(this); }
- static HTMLFormElement _get_form(var _this) native;
-
- DOMSettableTokenList get htmlFor() { return _get_htmlFor(this); }
- static DOMSettableTokenList _get_htmlFor(var _this) native;
-
- void set htmlFor(DOMSettableTokenList value) { _set_htmlFor(this, value); }
- static void _set_htmlFor(var _this, DOMSettableTokenList value) native;
-
- NodeList get labels() { return _get_labels(this); }
- static NodeList _get_labels(var _this) 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;
-
- String get type() { return _get_type(this); }
- static String _get_type(var _this) native;
-
- String get validationMessage() { return _get_validationMessage(this); }
- static String _get_validationMessage(var _this) native;
-
- ValidityState get validity() { return _get_validity(this); }
- static ValidityState _get_validity(var _this) native;
-
- String get value() { return _get_value(this); }
- static String _get_value(var _this) native;
-
- void set value(String value) { _set_value(this, value); }
- static void _set_value(var _this, String value) native;
-
- bool get willValidate() { return _get_willValidate(this); }
- static bool _get_willValidate(var _this) native;
-
- bool checkValidity() {
- return _checkValidity(this);
- }
- static bool _checkValidity(receiver) native;
-
- void setCustomValidity(String error) {
- _setCustomValidity(this, error);
- return;
- }
- static void _setCustomValidity(receiver, error) native;
-
- String get typeName() { return "HTMLOutputElement"; }
-}

Powered by Google App Engine
This is Rietveld 408576698