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

Unified Diff: runtime/bin/file_macos.cc

Issue 15832003: Change File.directory to not do any IO (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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_linux.cc ('k') | runtime/bin/file_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_macos.cc
diff --git a/runtime/bin/file_macos.cc b/runtime/bin/file_macos.cc
index c693f949bc2a1a8810aadd177dc42b0a5fc9b428..27f7177e21192e6bc607e4770218bac033892005 100644
--- a/runtime/bin/file_macos.cc
+++ b/runtime/bin/file_macos.cc
@@ -283,25 +283,6 @@ char* File::GetCanonicalPath(const char* pathname) {
}
-char* File::GetContainingDirectory(char* pathname) {
- // Report errors for non-regular files.
- struct stat st;
- if (TEMP_FAILURE_RETRY(stat(pathname, &st)) == 0) {
- if (!S_ISREG(st.st_mode)) {
- errno = (S_ISDIR(st.st_mode)) ? EISDIR : ENOENT;
- return NULL;
- }
- } else {
- return NULL;
- }
- char* path = NULL;
- do {
- path = dirname(pathname);
- } while (path == NULL && errno == EINTR);
- return GetCanonicalPath(path);
-}
-
-
const char* File::PathSeparator() {
return "/";
}
« no previous file with comments | « runtime/bin/file_linux.cc ('k') | runtime/bin/file_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698