summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/file_system_operation.h
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 06:57:10 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 06:57:10 +0000
commit86b74ce5087602c51cc2dd8ac45451b49d894f2b (patch)
treedafc222796f2149deaf50332bba941f476154620 /webkit/browser/fileapi/file_system_operation.h
parent7d8af07670ad54900b0ba030e59fc5d50efc5e3a (diff)
downloadchromium_src-86b74ce5087602c51cc2dd8ac45451b49d894f2b.zip
chromium_src-86b74ce5087602c51cc2dd8ac45451b49d894f2b.tar.gz
chromium_src-86b74ce5087602c51cc2dd8ac45451b49d894f2b.tar.bz2
fileapi: Remove platform_path parameter from FileSystemOperation::GetMetadataCallback
This parameter is no longer used. When the platform file path is needed, CreateSnapshotFile() should be used instead of GetMetadata(). BUG=248480 TEST=none R=kinuko@chromium.org, thestig@chromium.org Review URL: https://codereview.chromium.org/16729003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/file_system_operation.h')
-rw-r--r--webkit/browser/fileapi/file_system_operation.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/webkit/browser/fileapi/file_system_operation.h b/webkit/browser/fileapi/file_system_operation.h
index ff6b7b3..b4e887c 100644
--- a/webkit/browser/fileapi/file_system_operation.h
+++ b/webkit/browser/fileapi/file_system_operation.h
@@ -62,12 +62,10 @@ class FileSystemOperation {
typedef base::Callback<void(base::PlatformFileError result)> StatusCallback;
// Used for GetMetadata(). |result| is the return code of the operation,
- // |file_info| is the obtained file info, and |platform_path| is the path
- // of the file.
+ // |file_info| is the obtained file info.
typedef base::Callback<
void(base::PlatformFileError result,
- const base::PlatformFileInfo& file_info,
- const base::FilePath& platform_path)> GetMetadataCallback;
+ const base::PlatformFileInfo& file_info)> GetMetadataCallback;
// Used for OpenFile(). |result| is the return code of the operation.
// |on_close_callback| will be called after the file is closed in the child