| Index: chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system.h b/chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| index 4ecc8cb2f505cfde6117a2e0a6dfd1ebb4ffbfbe..1d20f2677f6611d67e9e7eb5654a9cba87d37bae 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| @@ -38,10 +38,12 @@ class ProvidedFileSystem : public ProvidedFileSystemInterface {
|
| virtual void ReadDirectory(
|
| const base::FilePath& directory_path,
|
| const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
|
| - virtual void OpenFile(
|
| - const base::FilePath& file_path,
|
| - OpenFileMode mode,
|
| - bool create,
|
| + virtual void OpenFile(const base::FilePath& file_path,
|
| + OpenFileMode mode,
|
| + bool create,
|
| + const OpenFileCallback& callback) OVERRIDE;
|
| + virtual void CloseFile(
|
| + int file_handle,
|
| const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
|
| virtual RequestManager* GetRequestManager() OVERRIDE;
|
|
|