Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1505)

Unified Diff: chrome/browser/media_galleries/fileapi/iphoto_file_util.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));

Powered by Google App Engine
This is Rietveld 408576698