diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 22:26:50 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 22:26:50 +0000 |
commit | bacef3cbbc55efebb2573194d329eabac5f5c7e3 (patch) | |
tree | caa96791f328bb36601bcb839e6544f3cfdf8290 /webkit/fileapi/file_system_callback_dispatcher.h | |
parent | 748ce719f7594754695dfbd17b35618a58a5ffd1 (diff) | |
download | chromium_src-bacef3cbbc55efebb2573194d329eabac5f5c7e3.zip chromium_src-bacef3cbbc55efebb2573194d329eabac5f5c7e3.tar.gz chromium_src-bacef3cbbc55efebb2573194d329eabac5f5c7e3.tar.bz2 |
Remove the path from PlatformFileInfo; it's cleaner just to pass it along as a
separate parameter, and not clutter up a base type.
BUG:none
TEST:none
Review URL: http://codereview.chromium.org/6731033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79624 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.h')
-rw-r--r-- | webkit/fileapi/file_system_callback_dispatcher.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.h b/webkit/fileapi/file_system_callback_dispatcher.h index e5265bd..2bffe54 100644 --- a/webkit/fileapi/file_system_callback_dispatcher.h +++ b/webkit/fileapi/file_system_callback_dispatcher.h @@ -22,7 +22,9 @@ class FileSystemCallbackDispatcher { virtual void DidSucceed() = 0; // Callback to report information for a file. - virtual void DidReadMetadata(const base::PlatformFileInfo& file_info) = 0; + virtual void DidReadMetadata( + const base::PlatformFileInfo& file_info, + const FilePath& platform_path) = 0; // Callback to report the contents of a directory. If the contents of // the given directory are reported in one batch, then |entries| will have |