Index: webrtc/base/unixfilesystem.h |
diff --git a/webrtc/base/unixfilesystem.h b/webrtc/base/unixfilesystem.h |
index 7d4859a7a5c4df2445059b98e28470ad5836d122..457cbcaff6002b8f176567482f840074c2eb059f 100644 |
--- a/webrtc/base/unixfilesystem.h |
+++ b/webrtc/base/unixfilesystem.h |
@@ -38,11 +38,6 @@ class UnixFilesystem : public FilesystemInterface { |
// It will fail with VERIY if you pass it a non-existant file, or a directory. |
bool DeleteFile(const Pathname& filename) override; |
- // This will attempt to delete the folder located at 'folder' |
- // It DCHECKs and returns false if you pass it a non-existant folder or a |
- // plain file. |
- bool DeleteEmptyFolder(const Pathname& folder) override; |
- |
// Creates a directory. This will call itself recursively to create /foo/bar |
// even if /foo does not exist. All created directories are created with the |
// given mode. |