| Index: net/ftp/ftp_util.cc
|
| diff --git a/net/ftp/ftp_util.cc b/net/ftp/ftp_util.cc
|
| index b5580664736bc1aa613dc680c569e67f6a789270..77ba363ee149d1153404a4f4b8ec7575a03ffc65 100644
|
| --- a/net/ftp/ftp_util.cc
|
| +++ b/net/ftp/ftp_util.cc
|
| @@ -108,12 +108,12 @@ std::string FtpUtil::VMSPathToUnix(const std::string& vms_path) {
|
| std::string result(vms_path);
|
| if (vms_path[0] == '[') {
|
| // It's a relative path.
|
| - ReplaceFirstSubstringAfterOffset(&result, 0, "[.", std::string());
|
| + base::ReplaceFirstSubstringAfterOffset(&result, 0, "[.", std::string());
|
| } else {
|
| // It's an absolute path.
|
| result.insert(0, "/");
|
| - ReplaceSubstringsAfterOffset(&result, 0, ":[000000]", "/");
|
| - ReplaceSubstringsAfterOffset(&result, 0, ":[", "/");
|
| + base::ReplaceSubstringsAfterOffset(&result, 0, ":[000000]", "/");
|
| + base::ReplaceSubstringsAfterOffset(&result, 0, ":[", "/");
|
| }
|
| std::replace(result.begin(), result.end(), '.', '/');
|
| std::replace(result.begin(), result.end(), ']', '/');
|
|
|