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

Unified Diff: runtime/bin/directory_fuchsia.cc

Issue 2591523002: Fuchsia: Adds File::Copy() (Closed)
Patch Set: Address comments Created 4 years 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 | « no previous file | runtime/bin/file_fuchsia.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_fuchsia.cc
diff --git a/runtime/bin/directory_fuchsia.cc b/runtime/bin/directory_fuchsia.cc
index 5ba6544bc1b05c31a8c58dd4fd25e10d6b252b1c..9259bd019164403da02b95544835ac2cd9e01138 100644
--- a/runtime/bin/directory_fuchsia.cc
+++ b/runtime/bin/directory_fuchsia.cc
@@ -355,6 +355,8 @@ bool Directory::Delete(const char* dir_name, bool recursive) {
}
return NO_RETRY_EXPECTED(rmdir(dir_name)) == 0;
} else {
+ // TODO(MG-416): After the issue is addressed, this can use the same code
+ // as on Linux, etc.
UNIMPLEMENTED();
return false;
}
« no previous file with comments | « no previous file | runtime/bin/file_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698