X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fstorage%2Fcommon%2Ffileapi%2Ffile_system_util.cc;h=13ef05a75ebdc311bc176867a1de6b7bad0bb3cf;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=0e818430225d53141d4d1ea16778c8b696d417c9;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/storage/common/fileapi/file_system_util.cc b/src/storage/common/fileapi/file_system_util.cc index 0e81843..13ef05a 100644 --- a/src/storage/common/fileapi/file_system_util.cc +++ b/src/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;