Index: webkit/fileapi/local_file_util.cc |
diff --git a/webkit/fileapi/local_file_util.cc b/webkit/fileapi/local_file_util.cc |
index 2bfe172e3be0700518adf829b5a3d4185294edda..667094f9de0e12a4d694c94ed5074bb03967852b 100644 |
--- a/webkit/fileapi/local_file_util.cc |
+++ b/webkit/fileapi/local_file_util.cc |
@@ -188,24 +188,6 @@ PlatformFileError LocalFileUtil::Truncate( |
return NativeFileUtil::Truncate(file_path, length); |
} |
-bool LocalFileUtil::PathExists( |
- FileSystemOperationContext* context, |
- const FileSystemURL& url) { |
- FilePath file_path; |
- if (GetLocalFilePath(context, url, &file_path) != base::PLATFORM_FILE_OK) |
- return false; |
- return NativeFileUtil::PathExists(file_path); |
-} |
- |
-bool LocalFileUtil::DirectoryExists( |
- FileSystemOperationContext* context, |
- const FileSystemURL& url) { |
- FilePath file_path; |
- if (GetLocalFilePath(context, url, &file_path) != base::PLATFORM_FILE_OK) |
- return false; |
- return NativeFileUtil::DirectoryExists(file_path); |
-} |
- |
bool LocalFileUtil::IsDirectoryEmpty( |
FileSystemOperationContext* context, |
const FileSystemURL& url) { |