Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Unified Diff: chrome/browser/sync_file_system/local/root_delete_helper.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698