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

Unified Diff: chrome/browser/sync_file_system/local_change_processor.h

Issue 12315004: Migrated sync_file_type and file_change from namespace fileapi to sync_file_system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 10 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 c22b8607e6102f4c0f7999e331b48ebce40a6d30..bb5d769c332cda29f63c1336c091ea13e81d5a49 100644
--- a/chrome/browser/sync_file_system/local_change_processor.h
+++ b/chrome/browser/sync_file_system/local_change_processor.h
@@ -9,13 +9,13 @@
#include "webkit/fileapi/syncable/sync_callbacks.h"
namespace fileapi {
-class FileChange;
-class FileChangeList;
class FileSystemURL;
}
namespace sync_file_system {
+class FileChange;
+
// Represents an interface to process one local change and applies
// it to the remote server.
// This interface is to be implemented/backed by RemoteSyncFileService.
@@ -31,7 +31,7 @@ class LocalChangeProcessor {
// 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 fileapi::FileChange& change,
+ const FileChange& change,
const base::FilePath& local_file_path,
const fileapi::FileSystemURL& url,
const fileapi::SyncStatusCallback& callback) = 0;

Powered by Google App Engine
This is Rietveld 408576698