diff options
Diffstat (limited to 'third_party/zlib')
-rw-r--r-- | third_party/zlib/google/zip.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/zlib/google/zip.cc b/third_party/zlib/google/zip.cc index 726df33..39e2e53 100644 --- a/third_party/zlib/google/zip.cc +++ b/third_party/zlib/google/zip.cc @@ -56,7 +56,7 @@ bool AddEntryToZip(zipFile zip_file, const base::FilePath& path, DCHECK(result); std::string str_path = relative_path.AsUTF8Unsafe(); #if defined(OS_WIN) - ReplaceSubstringsAfterOffset(&str_path, 0u, "\\", "/"); + base::ReplaceSubstringsAfterOffset(&str_path, 0u, "\\", "/"); #endif bool is_directory = base::DirectoryExists(path); |