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

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

Powered by Google App Engine
This is Rietveld 408576698