| Index: chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/unmount.h b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| index b6614d4a332c153b3cd3e01c122a2eca47afbc53..39bbb021651747fe153e0835b857873d6a524765 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
|
| @@ -8,7 +8,7 @@
|
| #include "base/files/file.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
|
| -#include "webkit/browser/fileapi/async_file_util.h"
|
| +#include "storage/browser/fileapi/async_file_util.h"
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| @@ -31,7 +31,7 @@ class Unmount : public Operation {
|
| public:
|
| Unmount(extensions::EventRouter* event_router,
|
| const ProvidedFileSystemInfo& file_system_info,
|
| - const fileapi::AsyncFileUtil::StatusCallback& callback);
|
| + const storage::AsyncFileUtil::StatusCallback& callback);
|
| virtual ~Unmount();
|
|
|
| // Operation overrides.
|
| @@ -44,7 +44,7 @@ class Unmount : public Operation {
|
| base::File::Error error) OVERRIDE;
|
|
|
| private:
|
| - const fileapi::AsyncFileUtil::StatusCallback callback_;
|
| + const storage::AsyncFileUtil::StatusCallback callback_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(Unmount);
|
| };
|
|
|