| Index: chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h b/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h
|
| index b9841cfd352b852feb7fdbdf4b0048b746b0f23e..e02e2d43a7f519d67c84e8241f49ddce5ecc648b 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h
|
| +++ b/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h
|
| @@ -46,11 +46,11 @@ class LocalToRemoteSyncer : public SyncTask {
|
| const SyncFileMetadata& local_metadata,
|
| const FileChange& local_change,
|
| const base::FilePath& local_path,
|
| - const fileapi::FileSystemURL& url);
|
| + const storage::FileSystemURL& url);
|
| virtual ~LocalToRemoteSyncer();
|
| virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE;
|
|
|
| - const fileapi::FileSystemURL& url() const { return url_; }
|
| + const storage::FileSystemURL& url() const { return url_; }
|
| const base::FilePath& target_path() const { return target_path_; }
|
| SyncAction sync_action() const { return sync_action_; }
|
| bool needs_remote_change_listing() const {
|
| @@ -113,7 +113,7 @@ class LocalToRemoteSyncer : public SyncTask {
|
| FileChange local_change_;
|
| bool local_is_missing_;
|
| base::FilePath local_path_;
|
| - fileapi::FileSystemURL url_;
|
| + storage::FileSystemURL url_;
|
| SyncAction sync_action_;
|
|
|
| scoped_ptr<FileTracker> remote_file_tracker_;
|
|
|