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

Unified Diff: webrtc/rtc_base/unixfilesystem.h

Issue 2891923002: Delete Filesystem::CreateFolder. (Closed)
Patch Set: Rebased. Created 3 years, 3 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 | « webrtc/rtc_base/logging_unittest.cc ('k') | webrtc/rtc_base/unixfilesystem.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/unixfilesystem.h
diff --git a/webrtc/rtc_base/unixfilesystem.h b/webrtc/rtc_base/unixfilesystem.h
index 3c157cb17142e0607e1a30d0577217df45d15264..116df2101c1248298b2b1dffd26ff43a0e58353e 100644
--- a/webrtc/rtc_base/unixfilesystem.h
+++ b/webrtc/rtc_base/unixfilesystem.h
@@ -26,15 +26,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;
- // 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.
- // Returns TRUE if function succeeds
- virtual bool CreateFolder(const Pathname &pathname, mode_t mode);
-
- // As above, with mode = 0755.
- bool CreateFolder(const Pathname& pathname) override;
-
// This moves a file from old_path to new_path, where "file" can be a plain
// file or directory, which will be moved recursively.
// Returns true if function succeeds.
« no previous file with comments | « webrtc/rtc_base/logging_unittest.cc ('k') | webrtc/rtc_base/unixfilesystem.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698