| Index: third_party/zlib/google/zip.cc
|
| diff --git a/third_party/zlib/google/zip.cc b/third_party/zlib/google/zip.cc
|
| index 726df33b477763d8b2825061129657701ba43d46..39e2e534ce4b7b73d7bdbbe839fca7709f333fed 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);
|
|
|