| Index: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| index 830969ef72d203ab199546b907c1767344fc1943..b4de08ad0fc842db8c41fb99611b1b1a6a3bc8cb 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
|
| @@ -68,20 +68,20 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
|
|
|
| // ProvidedFileSystemInterface overrides.
|
| virtual void RequestUnmount(
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void GetMetadata(
|
| const base::FilePath& entry_path,
|
| const ProvidedFileSystemInterface::GetMetadataCallback& callback)
|
| OVERRIDE;
|
| virtual void ReadDirectory(
|
| const base::FilePath& directory_path,
|
| - const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
|
| virtual void OpenFile(const base::FilePath& file_path,
|
| OpenFileMode mode,
|
| const OpenFileCallback& callback) OVERRIDE;
|
| virtual void CloseFile(
|
| int file_handle,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void ReadFile(int file_handle,
|
| net::IOBuffer* buffer,
|
| int64 offset,
|
| @@ -91,32 +91,32 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
|
| const base::FilePath& directory_path,
|
| bool exclusive,
|
| bool recursive,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void DeleteEntry(
|
| const base::FilePath& entry_path,
|
| bool recursive,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void CreateFile(
|
| const base::FilePath& file_path,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void CopyEntry(
|
| const base::FilePath& source_path,
|
| const base::FilePath& target_path,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void MoveEntry(
|
| const base::FilePath& source_path,
|
| const base::FilePath& target_path,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void Truncate(
|
| const base::FilePath& file_path,
|
| int64 length,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual void WriteFile(
|
| int file_handle,
|
| net::IOBuffer* buffer,
|
| int64 offset,
|
| int length,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| + const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
|
| virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
|
| virtual RequestManager* GetRequestManager() OVERRIDE;
|
| virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE;
|
|
|