| Index: storage/common/fileapi/file_system_util.cc
|
| diff --git a/storage/common/fileapi/file_system_util.cc b/storage/common/fileapi/file_system_util.cc
|
| index ed84b9084c9c68abc3b80967def169ac1e91e275..f67c864af8d2337c467f963d8a88c207c860754f 100644
|
| --- a/storage/common/fileapi/file_system_util.cc
|
| +++ b/storage/common/fileapi/file_system_util.cc
|
| @@ -420,8 +420,8 @@ bool CrackIsolatedFileSystemName(const std::string& filesystem_name,
|
| // names, so we do a case insensitive compare by converting both strings
|
| // to uppercase.
|
| // TODO(benwells): Remove this when WebKit uses the same constant.
|
| - start_token = StringToUpperASCII(start_token);
|
| - std::string filesystem_name_upper = StringToUpperASCII(filesystem_name);
|
| + start_token = base::StringToUpperASCII(start_token);
|
| + std::string filesystem_name_upper = base::StringToUpperASCII(filesystem_name);
|
| size_t pos = filesystem_name_upper.find(start_token);
|
| if (pos == std::string::npos)
|
| return false;
|
|
|