| Index: chrome/browser/sync_file_system/fake_remote_change_processor.h
|
| diff --git a/chrome/browser/sync_file_system/fake_remote_change_processor.h b/chrome/browser/sync_file_system/fake_remote_change_processor.h
|
| index f751bca7c36dc0cbfff01518079c58e9c8de36d9..48bfa8d240e38910f316526d6c7d55500328da2e 100644
|
| --- a/chrome/browser/sync_file_system/fake_remote_change_processor.h
|
| +++ b/chrome/browser/sync_file_system/fake_remote_change_processor.h
|
| @@ -38,24 +38,22 @@ class FakeRemoteChangeProcessor : public RemoteChangeProcessor {
|
| storage::FileSystemURL::Comparator> URLToFileMetadata;
|
|
|
| FakeRemoteChangeProcessor();
|
| - virtual ~FakeRemoteChangeProcessor();
|
| + ~FakeRemoteChangeProcessor() override;
|
|
|
| // RemoteChangeProcessor overrides.
|
| - virtual void PrepareForProcessRemoteChange(
|
| + void PrepareForProcessRemoteChange(
|
| const storage::FileSystemURL& url,
|
| const PrepareChangeCallback& callback) override;
|
| - virtual void ApplyRemoteChange(const FileChange& change,
|
| - const base::FilePath& local_path,
|
| - const storage::FileSystemURL& url,
|
| - const SyncStatusCallback& callback) override;
|
| - virtual void FinalizeRemoteSync(
|
| - const storage::FileSystemURL& url,
|
| - bool clear_local_changes,
|
| - const base::Closure& completion_callback) override;
|
| - virtual void RecordFakeLocalChange(
|
| - const storage::FileSystemURL& url,
|
| - const FileChange& change,
|
| - const SyncStatusCallback& callback) override;
|
| + void ApplyRemoteChange(const FileChange& change,
|
| + const base::FilePath& local_path,
|
| + const storage::FileSystemURL& url,
|
| + const SyncStatusCallback& callback) override;
|
| + void FinalizeRemoteSync(const storage::FileSystemURL& url,
|
| + bool clear_local_changes,
|
| + const base::Closure& completion_callback) override;
|
| + void RecordFakeLocalChange(const storage::FileSystemURL& url,
|
| + const FileChange& change,
|
| + const SyncStatusCallback& callback) override;
|
|
|
| void UpdateLocalFileMetadata(const storage::FileSystemURL& url,
|
| const FileChange& change);
|
|
|