| 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);
|
|
|