| Index: chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.cc b/chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.cc
|
| index 550aad9b9caa0c16e3b84ccb46dd46071f852fd4..e3ee4db49e08f32afcd4514aa108d19607bd3721 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.cc
|
| @@ -15,7 +15,7 @@ RemoteChangeProcessorWrapper::RemoteChangeProcessorWrapper(
|
| : remote_change_processor_(remote_change_processor) {}
|
|
|
| void RemoteChangeProcessorWrapper::PrepareForProcessRemoteChange(
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| const RemoteChangeProcessor::PrepareChangeCallback& callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
| remote_change_processor_->PrepareForProcessRemoteChange(url, callback);
|
| @@ -24,7 +24,7 @@ void RemoteChangeProcessorWrapper::PrepareForProcessRemoteChange(
|
| void RemoteChangeProcessorWrapper::ApplyRemoteChange(
|
| const FileChange& change,
|
| const base::FilePath& local_path,
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| const SyncStatusCallback& callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
| remote_change_processor_->ApplyRemoteChange(
|
| @@ -32,7 +32,7 @@ void RemoteChangeProcessorWrapper::ApplyRemoteChange(
|
| }
|
|
|
| void RemoteChangeProcessorWrapper::FinalizeRemoteSync(
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| bool clear_local_changes,
|
| const base::Closure& completion_callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
| @@ -41,7 +41,7 @@ void RemoteChangeProcessorWrapper::FinalizeRemoteSync(
|
| }
|
|
|
| void RemoteChangeProcessorWrapper::RecordFakeLocalChange(
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| const FileChange& change,
|
| const SyncStatusCallback& callback) {
|
| DCHECK(sequence_checker_.CalledOnValidSequencedThread());
|
|
|