| 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 0e818430225d53141d4d1ea16778c8b696d417c9..13ef05a75ebdc311bc176867a1de6b7bad0bb3cf 100644
|
| --- a/storage/common/fileapi/file_system_util.cc
|
| +++ b/storage/common/fileapi/file_system_util.cc
|
| @@ -171,7 +171,7 @@ bool ParseFileSystemSchemeURL(const GURL& url,
|
| // A path of the inner_url contains only mount type part (e.g. "/temporary").
|
| DCHECK(url.inner_url());
|
| std::string inner_path = url.inner_url()->path();
|
| - for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kValidTypes); ++i) {
|
| + for (size_t i = 0; i < arraysize(kValidTypes); ++i) {
|
| if (inner_path == kValidTypes[i].dir) {
|
| file_system_type = kValidTypes[i].type;
|
| break;
|
|
|