| Index: chrome/browser/chromeos/file_system_provider/operations/close_file.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/close_file.h b/chrome/browser/chromeos/file_system_provider/operations/close_file.h
|
| index 83bafff2f5ef3a5af85008ff6fb3fca78a3a030e..4645b18d30d559eb67fbc37cf2f24a10014a02e6 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/close_file.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/close_file.h
|
| @@ -26,14 +26,14 @@ namespace file_system_provider {
|
| namespace operations {
|
|
|
| // Opens a file for either read or write, with optionally creating the file
|
| -// first. Note, that this is part of fileapi::CreateOrOpen file, but it does
|
| +// first. Note, that this is part of storage::CreateOrOpen file, but it does
|
| // not download the file locally. Created per request.
|
| class CloseFile : public Operation {
|
| public:
|
| CloseFile(extensions::EventRouter* event_router,
|
| const ProvidedFileSystemInfo& file_system_info,
|
| int open_request_id,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback);
|
| + const storage::AsyncFileUtil::StatusCallback& callback);
|
| virtual ~CloseFile();
|
|
|
| // Operation overrides.
|
| @@ -47,7 +47,7 @@ class CloseFile : public Operation {
|
|
|
| private:
|
| int open_request_id_;
|
| - const fileapi::AsyncFileUtil::StatusCallback callback_;
|
| + const storage::AsyncFileUtil::StatusCallback callback_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CloseFile);
|
| };
|
|
|