| Index: chrome/browser/chromeos/file_system_provider/operations/open_file.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/open_file.h b/chrome/browser/chromeos/file_system_provider/operations/open_file.h
|
| index efe0a53d1a8c5821cc49fedf90263c7f4d154a59..0af47e1a85f53d104be03071fbe4fa0d11b1f35e 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/open_file.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/open_file.h
|
| @@ -35,7 +35,7 @@ class OpenFile : public Operation {
|
| const base::FilePath& file_path,
|
| ProvidedFileSystemInterface::OpenFileMode mode,
|
| bool create,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback);
|
| + const ProvidedFileSystemInterface::OpenFileCallback& callback);
|
| virtual ~OpenFile();
|
|
|
| // Operation overrides.
|
| @@ -49,7 +49,7 @@ class OpenFile : public Operation {
|
| base::FilePath file_path_;
|
| ProvidedFileSystemInterface::OpenFileMode mode_;
|
| bool create_;
|
| - const fileapi::AsyncFileUtil::StatusCallback callback_;
|
| + const ProvidedFileSystemInterface::OpenFileCallback callback_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OpenFile);
|
| };
|
|
|