| Index: webrtc/rtc_base/fileutils.h
|
| diff --git a/webrtc/rtc_base/fileutils.h b/webrtc/rtc_base/fileutils.h
|
| index b633a38270b1e9a1e9bc03eb77b5429f4d6fde77..a4a94727aa4b914ee8793e3a273c43d7a19e1f79 100644
|
| --- a/webrtc/rtc_base/fileutils.h
|
| +++ b/webrtc/rtc_base/fileutils.h
|
| @@ -102,11 +102,6 @@ class FilesystemInterface {
|
| // directory either exists, or is also absent.
|
| virtual bool IsAbsent(const Pathname& pathname) = 0;
|
|
|
| - // A folder appropriate for storing temporary files (Contents are
|
| - // automatically deleted when the program exits)
|
| - virtual bool GetTemporaryFolder(Pathname &path, bool create,
|
| - const std::string *append) = 0;
|
| -
|
| virtual std::string TempFilename(const Pathname &dir,
|
| const std::string &prefix) = 0;
|
|
|
| @@ -156,11 +151,6 @@ class Filesystem {
|
| return EnsureDefaultFilesystem()->IsAbsent(pathname);
|
| }
|
|
|
| - static bool GetTemporaryFolder(Pathname &path, bool create,
|
| - const std::string *append) {
|
| - return EnsureDefaultFilesystem()->GetTemporaryFolder(path, create, append);
|
| - }
|
| -
|
| static std::string TempFilename(const Pathname &dir,
|
| const std::string &prefix) {
|
| return EnsureDefaultFilesystem()->TempFilename(dir, prefix);
|
|
|