summaryrefslogtreecommitdiffstats
path: root/third_party/zlib
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-06-24 13:54:45 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-24 20:55:38 +0000
commite6dae46fc681a8ad62f6937a6ac1cab3d51938a9 (patch)
tree2f75f6b3af2a17c8b1512b6881b00a8c9595ac96 /third_party/zlib
parent2ef675dbcd5943aad03184b67696330cc910568d (diff)
downloadchromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.zip
chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.gz
chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.bz2
Add more string_util functions to base namespace.
Moves ReplaceFirstSubstringAfterOffset. It also changes the find/replace arguments to be string pieces (normally these are constants). TBR=gauravsh@chromium.org for chromeos/network Review URL: https://codereview.chromium.org/1200393002 Cr-Commit-Position: refs/heads/master@{#335999}
Diffstat (limited to 'third_party/zlib')
-rw-r--r--third_party/zlib/google/zip.cc2
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);