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

Unified Diff: chrome/browser/sync_file_system/local_change_processor.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/local_change_processor.h
diff --git a/chrome/browser/sync_file_system/local_change_processor.h b/chrome/browser/sync_file_system/local_change_processor.h
index 1d1d01b656aed76cef5cba0ff2d95ccdb11d276b..75f8ba0346a624dce28d7d3929074a11f3694bb5 100644
--- a/chrome/browser/sync_file_system/local_change_processor.h
+++ b/chrome/browser/sync_file_system/local_change_processor.h
@@ -8,7 +8,7 @@
#include "base/callback_forward.h"
#include "chrome/browser/sync_file_system/sync_callbacks.h"
-namespace fileapi {
+namespace storage {
class FileSystemURL;
}
@@ -31,12 +31,11 @@ class LocalChangeProcessor {
// When SYNC_STATUS_HAS_CONFLICT is returned the implementation should
// notify the backing RemoteFileSyncService of the existence of conflict
// (as the remote service is supposed to maintain a list of conflict files).
- virtual void ApplyLocalChange(
- const FileChange& change,
- const base::FilePath& local_file_path,
- const SyncFileMetadata& local_file_metadata,
- const fileapi::FileSystemURL& url,
- const SyncStatusCallback& callback) = 0;
+ virtual void ApplyLocalChange(const FileChange& change,
+ const base::FilePath& local_file_path,
+ const SyncFileMetadata& local_file_metadata,
+ const storage::FileSystemURL& url,
+ const SyncStatusCallback& callback) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(LocalChangeProcessor);

Powered by Google App Engine
This is Rietveld 408576698