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

Unified Diff: chrome/browser/sync_file_system/drive_backend/remote_change_processor_wrapper.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/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());

Powered by Google App Engine
This is Rietveld 408576698