| Index: chrome/browser/chromeos/drive/file_system_util.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system_util.cc b/chrome/browser/chromeos/drive/file_system_util.cc
|
| index 29ee8ac66041811b2403f0dac0a39907f72500ff..48b70cc49b5383363ad751729a0be00644c8ef90 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;
|
|
|