| Index: chrome/browser/sync_file_system/drive_backend/fake_sync_worker.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/fake_sync_worker.cc b/chrome/browser/sync_file_system/drive_backend/fake_sync_worker.cc
|
| index f3098e3aa69b2ef6f30f83d3ab89fd22a94a2bb9..6584a08395d7db24209c205c4ef9df599cd0dc33 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/fake_sync_worker.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend/fake_sync_worker.cc
|
| @@ -66,7 +66,7 @@ void FakeSyncWorker::UninstallOrigin(const GURL& origin,
|
| void FakeSyncWorker::ProcessRemoteChange(
|
| const SyncFileCallback& callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
| - callback.Run(SYNC_STATUS_OK, fileapi::FileSystemURL());
|
| + callback.Run(SYNC_STATUS_OK, storage::FileSystemURL());
|
| }
|
|
|
| void FakeSyncWorker::SetRemoteChangeProcessor(
|
| @@ -137,12 +137,11 @@ void FakeSyncWorker::PromoteDemotedChanges(const base::Closure& callback) {
|
| callback.Run();
|
| }
|
|
|
| -void FakeSyncWorker::ApplyLocalChange(
|
| - const FileChange& local_change,
|
| - const base::FilePath& local_path,
|
| - const SyncFileMetadata& local_metadata,
|
| - const fileapi::FileSystemURL& url,
|
| - const SyncStatusCallback& callback) {
|
| +void FakeSyncWorker::ApplyLocalChange(const FileChange& local_change,
|
| + const base::FilePath& local_path,
|
| + const SyncFileMetadata& local_metadata,
|
| + const storage::FileSystemURL& url,
|
| + const SyncStatusCallback& callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
| callback.Run(SYNC_STATUS_OK);
|
| }
|
|
|