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

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.cc

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_v1/remote_sync_delegate.cc
diff --git a/chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.cc b/chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.cc
index fad3310464fd32c5e76f672b3d674183f5b135ca..2b974482f19631b6e177375e52f24a76494c5b5f 100644
--- a/chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.cc
+++ b/chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.cc
@@ -10,7 +10,7 @@
#include "chrome/browser/sync_file_system/remote_change_processor.h"
#include "chrome/browser/sync_file_system/syncable_file_system_util.h"
-using fileapi::FileSystemURL;
+using storage::FileSystemURL;
namespace {
@@ -200,13 +200,12 @@ void RemoteSyncDelegate::DownloadFile(const SyncStatusCallback& callback) {
callback));
}
-void RemoteSyncDelegate::DidDownloadFile(
- const SyncStatusCallback& callback,
- google_apis::GDataErrorCode error,
- const std::string& md5_checksum,
- int64 file_size,
- const base::Time& updated_time,
- webkit_blob::ScopedFile downloaded_file) {
+void RemoteSyncDelegate::DidDownloadFile(const SyncStatusCallback& callback,
+ google_apis::GDataErrorCode error,
+ const std::string& md5_checksum,
+ int64 file_size,
+ const base::Time& updated_time,
+ storage::ScopedFile downloaded_file) {
if (error == google_apis::HTTP_NOT_MODIFIED) {
sync_action_ = SYNC_ACTION_NONE;
DidApplyRemoteChange(callback, SYNC_STATUS_OK);

Powered by Google App Engine
This is Rietveld 408576698