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

Unified Diff: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.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/drive_backend/remote_to_local_syncer.h
diff --git a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
index d24f39936a931ff6d2ba68dba391319328b2b67f..46f65352c131b2181831d704307b20b6a1adb01f 100644
--- a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
+++ b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
@@ -17,7 +17,7 @@
#include "chrome/browser/sync_file_system/sync_callbacks.h"
#include "chrome/browser/sync_file_system/sync_file_metadata.h"
#include "google_apis/drive/gdata_errorcode.h"
-#include "webkit/browser/fileapi/file_system_url.h"
+#include "storage/browser/fileapi/file_system_url.h"
namespace drive {
class DriveServiceInterface;
@@ -29,7 +29,7 @@ class FileResource;
class ResourceEntry;
}
-namespace webkit_blob {
+namespace storage {
class ScopedFile;
}
@@ -49,7 +49,7 @@ class RemoteToLocalSyncer : public SyncTask {
virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE;
void RunExclusive(scoped_ptr<SyncTaskToken> token);
- const fileapi::FileSystemURL& url() const { return url_; }
+ const storage::FileSystemURL& url() const { return url_; }
SyncAction sync_action() const { return sync_action_; }
bool is_sync_root_deletion() const { return sync_root_deletion_; }
@@ -174,11 +174,11 @@ class RemoteToLocalSyncer : public SyncTask {
void DeleteLocalFile(scoped_ptr<SyncTaskToken> token);
void DownloadFile(scoped_ptr<SyncTaskToken> token);
void DidDownloadFile(scoped_ptr<SyncTaskToken> token,
- webkit_blob::ScopedFile file,
+ storage::ScopedFile file,
google_apis::GDataErrorCode error,
const base::FilePath&);
void DidApplyDownload(scoped_ptr<SyncTaskToken> token,
- webkit_blob::ScopedFile,
+ storage::ScopedFile,
SyncStatusCode status);
void CreateFolder(scoped_ptr<SyncTaskToken> token);
@@ -196,7 +196,7 @@ class RemoteToLocalSyncer : public SyncTask {
scoped_ptr<FileTracker> dirty_tracker_;
scoped_ptr<FileMetadata> remote_metadata_;
- fileapi::FileSystemURL url_;
+ storage::FileSystemURL url_;
SyncAction sync_action_;
bool prepared_;

Powered by Google App Engine
This is Rietveld 408576698