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

Unified Diff: chrome/browser/sync_file_system/mock_remote_file_sync_service.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build 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/mock_remote_file_sync_service.cc
diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
index 7cf0db1467ab9f9482258b995b3259aecc1d75f2..06e50a7cd2629c18cc205fd2c73e41990bf3a2da 100644
--- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
+++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
@@ -70,7 +70,7 @@ void MockRemoteFileSyncService::NotifyRemoteServiceStateUpdated(
}
void MockRemoteFileSyncService::NotifyFileStatusChanged(
- const fileapi::FileSystemURL& url,
+ const storage::FileSystemURL& url,
SyncFileStatus sync_status,
SyncAction action_taken,
SyncDirection direction) {
@@ -109,8 +109,8 @@ void MockRemoteFileSyncService::ProcessRemoteChangeStub(
const SyncFileCallback& callback) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
- base::Bind(callback, SYNC_STATUS_NO_CHANGE_TO_SYNC,
- fileapi::FileSystemURL()));
+ base::Bind(
+ callback, SYNC_STATUS_NO_CHANGE_TO_SYNC, storage::FileSystemURL()));
}
RemoteServiceState MockRemoteFileSyncService::GetCurrentStateStub() const {

Powered by Google App Engine
This is Rietveld 408576698