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

Unified Diff: runtime/bin/directory_win.cc

Issue 8277033: Add exists, create and delete to directory implementation on Linux and Mac. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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
« runtime/bin/directory_impl.dart ('K') | « runtime/bin/directory_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_win.cc
diff --git a/runtime/bin/directory_win.cc b/runtime/bin/directory_win.cc
index 4e5086fec3318f0c4d9735321946909ad677fdd6..624f5781a98d143c66e2aa842703c0594fd88b59 100644
--- a/runtime/bin/directory_win.cc
+++ b/runtime/bin/directory_win.cc
@@ -155,6 +155,7 @@ static bool ListRecursively(const char* dir_name,
return completed;
}
+
void Directory::List(const char* dir_name,
bool recursive,
Dart_Port dir_port,
@@ -172,3 +173,21 @@ void Directory::List(const char* dir_name,
Dart_Post(done_port, value);
}
}
+
+
+bool Directory::Exists(const char* dir_name, bool* result) {
+ UNIMPLEMENTED();
+ return false;
+}
+
+
+bool Directory::Create(const char* dir_name) {
+ UNIMPLEMENTED();
+ return false;
+}
+
+
+bool Directory::Delete(const char* dir_name) {
+ UNIMPLEMENTED();
+ return false;
+}
« runtime/bin/directory_impl.dart ('K') | « runtime/bin/directory_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698