diff options
Diffstat (limited to 'base/file_util_win.cc')
-rw-r--r-- | base/file_util_win.cc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/base/file_util_win.cc b/base/file_util_win.cc index 77247a4..f59f87d 100644 --- a/base/file_util_win.cc +++ b/base/file_util_win.cc @@ -809,21 +809,4 @@ void MemoryMappedFile::CloseHandles() { length_ = INVALID_FILE_SIZE; } -// Deprecated functions ---------------------------------------------------- - -void InsertBeforeExtension(std::wstring* path_str, - const std::wstring& suffix) { - FilePath path(*path_str); - InsertBeforeExtension(&path, suffix); - path_str->assign(path.value()); -} -void PathComponents(const std::wstring& path, - std::vector<std::wstring>* components) { - PathComponents(FilePath(path), components); -} -void ReplaceExtension(std::wstring* file_name, const std::wstring& extension) { - FilePath path(*file_name); - ReplaceExtension(&path, extension); - file_name->assign(path.value()); -} } // namespace file_util |