Index: storage/browser/fileapi/file_system_context.cc |
diff --git a/storage/browser/fileapi/file_system_context.cc b/storage/browser/fileapi/file_system_context.cc |
index 2a03d95246491402a13ab2c961189e27e307f82f..c6ef9fd92c7a49d91be0cef217f8bbcb1d14c514 100644 |
--- a/storage/browser/fileapi/file_system_context.cc |
+++ b/storage/browser/fileapi/file_system_context.cc |
@@ -584,7 +584,7 @@ void FileSystemContext::RegisterBackend(FileSystemBackend* backend) { |
kFileSystemTypeExternal, |
}; |
// Register file system backends for public mount types. |
- for (size_t j = 0; j < ARRAYSIZE_UNSAFE(mount_types); ++j) { |
+ for (size_t j = 0; j < arraysize(mount_types); ++j) { |
if (backend->CanHandleType(mount_types[j])) { |
const bool inserted = backend_map_.insert( |
std::make_pair(mount_types[j], backend)).second; |