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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h

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/sync_worker_interface.h
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h b/chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h
index cf32f516c7b0c57f13fabb9226ab238608df9f30..c114ccd665d99f833a2a1d0d1ba750f6c559a937 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h
+++ b/chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h
@@ -26,7 +26,7 @@ class DriveServiceInterface;
class DriveUploaderInterface;
}
-namespace fileapi {
+namespace storage {
class FileSystemURL;
}
@@ -47,7 +47,7 @@ class SyncWorkerInterface {
class Observer {
public:
virtual void OnPendingFileListUpdated(int item_count) = 0;
- virtual void OnFileStatusChanged(const fileapi::FileSystemURL& url,
+ virtual void OnFileStatusChanged(const storage::FileSystemURL& url,
SyncFileStatus file_status,
SyncAction sync_action,
SyncDirection direction) = 0;
@@ -88,12 +88,11 @@ class SyncWorkerInterface {
virtual void PromoteDemotedChanges(const base::Closure& callback) = 0;
// See LocalChangeProcessor for the details.
- virtual void ApplyLocalChange(
- const FileChange& local_change,
- const base::FilePath& local_path,
- const SyncFileMetadata& local_metadata,
- const fileapi::FileSystemURL& url,
- const SyncStatusCallback& callback) = 0;
+ virtual void ApplyLocalChange(const FileChange& local_change,
+ const base::FilePath& local_path,
+ const SyncFileMetadata& local_metadata,
+ const storage::FileSystemURL& url,
+ const SyncStatusCallback& callback) = 0;
virtual void ActivateService(RemoteServiceState service_state,
const std::string& description) = 0;

Powered by Google App Engine
This is Rietveld 408576698