| 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);
|
|
|