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

Unified Diff: webkit/fileapi/local_file_system_file_util.cc

Issue 6731033: Remove the path from PlatformFileInfo; it's cleaner just to pass it along as a (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months 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
« no previous file with comments | « webkit/fileapi/local_file_system_file_util.h ('k') | webkit/plugins/ppapi/file_callbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/local_file_system_file_util.cc
===================================================================
--- webkit/fileapi/local_file_system_file_util.cc (revision 79607)
+++ webkit/fileapi/local_file_system_file_util.cc (working copy)
@@ -47,14 +47,15 @@
PlatformFileError LocalFileSystemFileUtil::GetFileInfo(
FileSystemOperationContext* context,
const FilePath& file_path,
- base::PlatformFileInfo* file_info) {
+ base::PlatformFileInfo* file_info,
+ FilePath* platform_file_path) {
FilePath local_path =
GetLocalPath(context, context->src_origin_url(), context->src_type(),
file_path);
if (local_path.empty())
return base::PLATFORM_FILE_ERROR_INVALID_OPERATION;
return FileSystemFileUtil::GetInstance()->GetFileInfo(
- context, local_path, file_info);
+ context, local_path, file_info, platform_file_path);
}
PlatformFileError LocalFileSystemFileUtil::ReadDirectory(
« no previous file with comments | « webkit/fileapi/local_file_system_file_util.h ('k') | webkit/plugins/ppapi/file_callbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698