diff options
Diffstat (limited to 'chrome/browser/chromeos/drive/file_system_util.cc')
-rw-r--r-- | chrome/browser/chromeos/drive/file_system_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/drive/file_system_util.cc b/chrome/browser/chromeos/drive/file_system_util.cc index 29ee8ac..48b70cc 100644 --- a/chrome/browser/chromeos/drive/file_system_util.cc +++ b/chrome/browser/chromeos/drive/file_system_util.cc @@ -304,7 +304,7 @@ std::string NormalizeFileName(const std::string& input) { std::string output; if (!base::ConvertToUtf8AndNormalize(input, base::kCodepageUTF8, &output)) output = input; - ReplaceChars(output, kSlash, std::string(kEscapedChars), &output); + base::ReplaceChars(output, kSlash, std::string(kEscapedChars), &output); if (!output.empty() && output.find_first_not_of(kDot, 0) == std::string::npos) output = kEscapedChars; return output; |