| Index: chrome/browser/sync_file_system/local/root_delete_helper.h
|
| diff --git a/chrome/browser/sync_file_system/local/root_delete_helper.h b/chrome/browser/sync_file_system/local/root_delete_helper.h
|
| index c4fb1f74b58fdf91ad72e0254e7b5d3507a3f99d..a3bfa9d9be927fd6eb19642f6a7e049fc79b225b 100644
|
| --- a/chrome/browser/sync_file_system/local/root_delete_helper.h
|
| +++ b/chrome/browser/sync_file_system/local/root_delete_helper.h
|
| @@ -10,11 +10,11 @@
|
| #include "base/files/file.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| -#include "webkit/browser/fileapi/file_system_url.h"
|
| +#include "storage/browser/fileapi/file_system_url.h"
|
|
|
| class GURL;
|
|
|
| -namespace fileapi {
|
| +namespace storage {
|
| class FileSystemContext;
|
| }
|
|
|
| @@ -32,9 +32,9 @@ class RootDeleteHelper {
|
| public:
|
| typedef base::Callback<void(base::File::Error)> FileStatusCallback;
|
|
|
| - RootDeleteHelper(fileapi::FileSystemContext* file_system_context,
|
| + RootDeleteHelper(storage::FileSystemContext* file_system_context,
|
| LocalFileSyncStatus* sync_status,
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| const FileStatusCallback& callback);
|
| ~RootDeleteHelper();
|
|
|
| @@ -47,8 +47,8 @@ class RootDeleteHelper {
|
| const std::string& name,
|
| base::File::Error error);
|
|
|
| - scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
| - const fileapi::FileSystemURL url_;
|
| + scoped_refptr<storage::FileSystemContext> file_system_context_;
|
| + const storage::FileSystemURL url_;
|
| FileStatusCallback callback_;
|
|
|
| // Not owned; owner of this instance owns it.
|
|
|