| Index: components/resource_provider/file_utils.cc
|
| diff --git a/components/resource_provider/file_utils.cc b/components/resource_provider/file_utils.cc
|
| index 3cd3a0a2d7b42cbb9f1d4fbe82cceba6a959fcee..2e8d97a4e75d3508b793b06bbbde7b6d70131b2e 100644
|
| --- a/components/resource_provider/file_utils.cc
|
| +++ b/components/resource_provider/file_utils.cc
|
| @@ -17,7 +17,8 @@ bool IsPathNameValid(const std::string& name) {
|
| return false;
|
|
|
| for (auto c : name) {
|
| - if (!IsAsciiAlpha(c) && !IsAsciiDigit(c) && c != '_' && c != '.')
|
| + if (!base::IsAsciiAlpha(c) && !base::IsAsciiDigit(c) &&
|
| + c != '_' && c != '.')
|
| return false;
|
| }
|
| return true;
|
|
|