summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webfileutilities_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/webfileutilities_impl.cc')
-rw-r--r--webkit/glue/webfileutilities_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webfileutilities_impl.cc b/webkit/glue/webfileutilities_impl.cc
index 6e70ff5..eca5326 100644
--- a/webkit/glue/webfileutilities_impl.cc
+++ b/webkit/glue/webfileutilities_impl.cc
@@ -32,12 +32,12 @@ bool WebFileUtilitiesImpl::getFileInfo(const WebString& path,
return false;
}
// TODO(rvargas): convert this code to use base::File::Info.
- base::PlatformFileInfo file_info;
+ base::File::Info file_info;
if (!base::GetFileInfo(base::FilePath::FromUTF16Unsafe(path),
reinterpret_cast<base::File::Info*>(&file_info)))
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;
}