| Index: chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/truncate.h b/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| index 52e59a1f773b009d9656f8e346d4a1523a70581b..f5b83e022104c23f418a2831f464a53c6bd3371b 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/truncate.h
|
| @@ -11,7 +11,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_value.h"
|
| -#include "webkit/browser/fileapi/async_file_util.h"
|
| +#include "storage/browser/fileapi/async_file_util.h"
|
|
|
| namespace base {
|
| class FilePath;
|
| @@ -33,7 +33,7 @@ class Truncate : public Operation {
|
| const ProvidedFileSystemInfo& file_system_info,
|
| const base::FilePath& file_path,
|
| int64 length,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback);
|
| + const storage::AsyncFileUtil::StatusCallback& callback);
|
| virtual ~Truncate();
|
|
|
| // Operation overrides.
|
| @@ -48,7 +48,7 @@ class Truncate : public Operation {
|
| private:
|
| base::FilePath file_path_;
|
| int64 length_;
|
| - const fileapi::AsyncFileUtil::StatusCallback callback_;
|
| + const storage::AsyncFileUtil::StatusCallback callback_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(Truncate);
|
| };
|
|
|