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

Unified Diff: client/dom/generated/src/wrapping/_HTMLDocumentWrappingImplementation.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/_HTMLDocumentWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLDocumentWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLDocumentWrappingImplementation.dart
deleted file mode 100644
index 26242cb5c20930b09b15c668df2a32bf5c04f3a4..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_HTMLDocumentWrappingImplementation.dart
+++ /dev/null
@@ -1,125 +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 _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementation implements HTMLDocument {
- _HTMLDocumentWrappingImplementation() : super() {}
-
- static create__HTMLDocumentWrappingImplementation() native {
- return new _HTMLDocumentWrappingImplementation();
- }
-
- Element get activeElement() { return _get_activeElement(this); }
- static Element _get_activeElement(var _this) native;
-
- String get alinkColor() { return _get_alinkColor(this); }
- static String _get_alinkColor(var _this) native;
-
- void set alinkColor(String value) { _set_alinkColor(this, value); }
- static void _set_alinkColor(var _this, String value) native;
-
- HTMLAllCollection get all() { return _get_all(this); }
- static HTMLAllCollection _get_all(var _this) native;
-
- void set all(HTMLAllCollection value) { _set_all(this, value); }
- static void _set_all(var _this, HTMLAllCollection 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 compatMode() { return _get_compatMode_HTMLDocument(this); }
- static String _get_compatMode_HTMLDocument(var _this) native;
-
- String get designMode() { return _get_designMode(this); }
- static String _get_designMode(var _this) native;
-
- void set designMode(String value) { _set_designMode(this, value); }
- static void _set_designMode(var _this, String value) native;
-
- String get dir() { return _get_dir(this); }
- static String _get_dir(var _this) native;
-
- void set dir(String value) { _set_dir(this, value); }
- static void _set_dir(var _this, String value) native;
-
- HTMLCollection get embeds() { return _get_embeds(this); }
- static HTMLCollection _get_embeds(var _this) native;
-
- String get fgColor() { return _get_fgColor(this); }
- static String _get_fgColor(var _this) native;
-
- void set fgColor(String value) { _set_fgColor(this, value); }
- static void _set_fgColor(var _this, String value) native;
-
- String get linkColor() { return _get_linkColor(this); }
- static String _get_linkColor(var _this) native;
-
- void set linkColor(String value) { _set_linkColor(this, value); }
- static void _set_linkColor(var _this, String value) native;
-
- HTMLCollection get plugins() { return _get_plugins(this); }
- static HTMLCollection _get_plugins(var _this) native;
-
- HTMLCollection get scripts() { return _get_scripts(this); }
- static HTMLCollection _get_scripts(var _this) native;
-
- String get vlinkColor() { return _get_vlinkColor(this); }
- static String _get_vlinkColor(var _this) native;
-
- void set vlinkColor(String value) { _set_vlinkColor(this, value); }
- static void _set_vlinkColor(var _this, String value) native;
-
- void captureEvents() {
- _captureEvents(this);
- return;
- }
- static void _captureEvents(receiver) native;
-
- void clear() {
- _clear(this);
- return;
- }
- static void _clear(receiver) native;
-
- void close() {
- _close(this);
- return;
- }
- static void _close(receiver) native;
-
- bool hasFocus() {
- return _hasFocus(this);
- }
- static bool _hasFocus(receiver) native;
-
- void open() {
- _open(this);
- return;
- }
- static void _open(receiver) native;
-
- void releaseEvents() {
- _releaseEvents(this);
- return;
- }
- static void _releaseEvents(receiver) native;
-
- void write(String text) {
- _write(this, text);
- return;
- }
- static void _write(receiver, text) native;
-
- void writeln(String text) {
- _writeln(this, text);
- return;
- }
- static void _writeln(receiver, text) native;
-
- String get typeName() { return "HTMLDocument"; }
-}

Powered by Google App Engine
This is Rietveld 408576698