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

Unified Diff: sdk/lib/_internal/lib/io_patch.dart

Issue 23889008: Move delete/deleteSync up to FileSystemEntity, with a shared documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Style fixes. Created 7 years, 3 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
« no previous file with comments | « runtime/bin/file_patch.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/lib/io_patch.dart
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
index fc29425912966587c177893c4fbfdacfdff59cc8..04ee3a980d28b04e6e863370bce5661944091487 100644
--- a/sdk/lib/_internal/lib/io_patch.dart
+++ b/sdk/lib/_internal/lib/io_patch.dart
@@ -18,8 +18,8 @@ patch class _Directory {
patch static _create(String path) {
throw new UnsupportedError("Directory._create");
}
- patch static _delete(String path, bool recursive) {
- throw new UnsupportedError("Directory._delete");
+ patch static _deleteNative(String path, bool recursive) {
+ throw new UnsupportedError("Directory._deleteNative");
}
patch static _rename(String path, String newPath) {
throw new UnsupportedError("Directory._rename");
@@ -74,11 +74,11 @@ patch class _File {
patch static _linkTarget(String path) {
throw new UnsupportedError("File._linkTarget");
}
- patch static _delete(String path) {
- throw new UnsupportedError("File._delete");
+ patch static _deleteNative(String path) {
+ throw new UnsupportedError("File._deleteNative");
}
- patch static _deleteLink(String path) {
- throw new UnsupportedError("File._deleteLink");
+ patch static _deleteLinkNative(String path) {
+ throw new UnsupportedError("File._deleteLinkNative");
}
patch static _rename(String oldPath, String newPath) {
throw new UnsupportedError("File._rename");
« no previous file with comments | « runtime/bin/file_patch.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698