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

Unified Diff: client/dom/generated/src/wrapping/_EntryWrappingImplementation.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/_EntryWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart b/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart
deleted file mode 100644
index 4c22c74db2be0b76f23b9730aba46d85863a361f..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart
+++ /dev/null
@@ -1,87 +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 _EntryWrappingImplementation extends DOMWrapperBase implements Entry {
- _EntryWrappingImplementation() : super() {}
-
- static create__EntryWrappingImplementation() native {
- return new _EntryWrappingImplementation();
- }
-
- DOMFileSystem get filesystem() { return _get_filesystem(this); }
- static DOMFileSystem _get_filesystem(var _this) native;
-
- String get fullPath() { return _get_fullPath(this); }
- static String _get_fullPath(var _this) native;
-
- bool get isDirectory() { return _get_isDirectory(this); }
- static bool _get_isDirectory(var _this) native;
-
- bool get isFile() { return _get_isFile(this); }
- static bool _get_isFile(var _this) native;
-
- String get name() { return _get_name(this); }
- static String _get_name(var _this) native;
-
- void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
- if (name === null) {
- if (successCallback === null) {
- if (errorCallback === null) {
- _copyTo(this, parent);
- return;
- }
- }
- } else {
- _copyTo_2(this, parent, name, successCallback, errorCallback);
- return;
- }
- throw "Incorrect number or type of arguments";
- }
- static void _copyTo(receiver, parent) native;
- static void _copyTo_2(receiver, parent, name, successCallback, errorCallback) native;
-
- void getMetadata(MetadataCallback successCallback, [ErrorCallback errorCallback = null]) {
- _getMetadata(this, successCallback, errorCallback);
- return;
- }
- static void _getMetadata(receiver, successCallback, errorCallback) native;
-
- void getParent([EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
- _getParent(this, successCallback, errorCallback);
- return;
- }
- static void _getParent(receiver, successCallback, errorCallback) native;
-
- void moveTo(DirectoryEntry parent, [String name = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
- if (name === null) {
- if (successCallback === null) {
- if (errorCallback === null) {
- _moveTo(this, parent);
- return;
- }
- }
- } else {
- _moveTo_2(this, parent, name, successCallback, errorCallback);
- return;
- }
- throw "Incorrect number or type of arguments";
- }
- static void _moveTo(receiver, parent) native;
- static void _moveTo_2(receiver, parent, name, successCallback, errorCallback) native;
-
- void remove(VoidCallback successCallback, [ErrorCallback errorCallback = null]) {
- _remove(this, successCallback, errorCallback);
- return;
- }
- static void _remove(receiver, successCallback, errorCallback) native;
-
- String toURL() {
- return _toURL(this);
- }
- static String _toURL(receiver) native;
-
- String get typeName() { return "Entry"; }
-}

Powered by Google App Engine
This is Rietveld 408576698