Index: chrome/browser/media_galleries/fileapi/iphoto_file_util.cc |
diff --git a/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc b/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc |
index c2df49586b383d64467c1edbf465d2af383674c9..e4fdde4f292f710bb86aac7b81022fb3e4770397 100644 |
--- a/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc |
+++ b/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc |
@@ -249,7 +249,7 @@ base::PlatformFileError IPhotoFileUtil::ReadDirectorySync( |
locations.begin(); |
it != locations.end(); it++) { |
base::PlatformFileInfo info; |
- if (!file_util::GetFileInfo(it->second, &info)) |
+ if (!base::GetFileInfo(it->second, &info)) |
return base::PLATFORM_FILE_ERROR_IO; |
file_list->push_back(DirectoryEntry(it->first, DirectoryEntry::FILE, |
info.size, info.last_modified)); |
@@ -264,7 +264,7 @@ base::PlatformFileError IPhotoFileUtil::ReadDirectorySync( |
originals.begin(); |
it != originals.end(); it++) { |
base::PlatformFileInfo info; |
- if (!file_util::GetFileInfo(it->second, &info)) |
+ if (!base::GetFileInfo(it->second, &info)) |
return base::PLATFORM_FILE_ERROR_IO; |
file_list->push_back(DirectoryEntry(it->first, DirectoryEntry::FILE, |
info.size, info.last_modified)); |