Index: content/worker/worker_webkitplatformsupport_impl.cc |
diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc |
index 23fb80ea08dfbac831f95b7dbd6c431b3c4b114f..a83cd34f4bec179810226c508ec2d3e7a6446a45 100644 |
--- a/content/worker/worker_webkitplatformsupport_impl.cc |
+++ b/content/worker/worker_webkitplatformsupport_impl.cc |
@@ -61,15 +61,15 @@ class WorkerWebKitPlatformSupportImpl::FileUtilities |
bool WorkerWebKitPlatformSupportImpl::FileUtilities::getFileInfo( |
const WebString& path, |
WebFileInfo& web_file_info) { |
- base::PlatformFileInfo file_info; |
- base::PlatformFileError status; |
+ base::File::Info file_info; |
+ base::File::Error status; |
if (!thread_safe_sender_.get() || |
!thread_safe_sender_->Send(new FileUtilitiesMsg_GetFileInfo( |
base::FilePath::FromUTF16Unsafe(path), &file_info, &status)) || |
- status != base::PLATFORM_FILE_OK) { |
+ status != base::File::FILE_OK) { |
return false; |
} |
- webkit_glue::PlatformFileInfoToWebFileInfo(file_info, &web_file_info); |
+ webkit_glue::FileInfoToWebFileInfo(file_info, &web_file_info); |
web_file_info.platformPath = path; |
return true; |
} |