Chromium Code Reviews| Index: webkit/fileapi/file_system_operation.h |
| =================================================================== |
| --- webkit/fileapi/file_system_operation.h (revision 79323) |
| +++ webkit/fileapi/file_system_operation.h (working copy) |
| @@ -112,11 +112,14 @@ |
| void DidFinishFileOperation(base::PlatformFileError rv); |
| void DidDirectoryExists(base::PlatformFileError rv, |
| - const base::PlatformFileInfo& file_info); |
| + const base::PlatformFileInfo& file_info, |
| + const FilePath&); |
|
kinuko
2011/03/25 22:39:54
nit: in chromium I don't think we usually omit (un
kinuko
2011/03/25 22:44:43
Found that this wasn't really true, though I remem
ericu
2011/03/28 20:24:34
I added them back in as "unused".
|
| void DidFileExists(base::PlatformFileError rv, |
| - const base::PlatformFileInfo& file_info); |
| + const base::PlatformFileInfo& file_info, |
| + const FilePath&); |
| void DidGetMetadata(base::PlatformFileError rv, |
| - const base::PlatformFileInfo& file_info); |
| + const base::PlatformFileInfo& file_info, |
| + const FilePath& platform_path); |
| void DidReadDirectory( |
| base::PlatformFileError rv, |
| const std::vector<base::FileUtilProxy::Entry>& entries); |