| 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 95fc33d41e7bef5bcc25c04a0dec43e226cd72eb..a4b8ec6131d3b2a7d01bb929d8d35057af2e1593 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system.h
|
| @@ -9,7 +9,7 @@
|
| #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
|
| #include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
|
| #include "chrome/browser/chromeos/file_system_provider/request_manager.h"
|
| -#include "webkit/browser/fileapi/async_file_util.h"
|
| +#include "storage/browser/fileapi/async_file_util.h"
|
|
|
| class Profile;
|
|
|
| @@ -40,18 +40,18 @@ class ProvidedFileSystem : 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 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,
|
| @@ -61,32 +61,32 @@ class ProvidedFileSystem : 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;
|
|
|