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

Unified Diff: components/sync_driver/generic_change_processor.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: components/sync_driver/generic_change_processor.h
diff --git a/components/sync_driver/generic_change_processor.h b/components/sync_driver/generic_change_processor.h
index c370c3fd80bd80f50786c61d75c551cf3bada49f..e3c1fc77ba064c1381198c930d4c953d19d6df2d 100644
--- a/components/sync_driver/generic_change_processor.h
+++ b/components/sync_driver/generic_change_processor.h
@@ -62,25 +62,25 @@ class GenericChangeProcessor : public ChangeProcessor,
virtual void ApplyChangesFromSyncModel(
const syncer::BaseTransaction* trans,
int64 version,
- const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
+ const syncer::ImmutableChangeRecordList& changes) override;
// Passes |syncer_changes_|, built in ApplyChangesFromSyncModel, onto
// |local_service_| by way of its ProcessSyncChanges method.
- virtual void CommitChangesFromSyncModel() OVERRIDE;
+ virtual void CommitChangesFromSyncModel() override;
// syncer::SyncChangeProcessor implementation.
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) OVERRIDE;
+ const syncer::SyncChangeList& change_list) override;
virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
- const OVERRIDE;
+ const override;
virtual syncer::SyncError UpdateDataTypeContext(
syncer::ModelType type,
syncer::SyncChangeProcessor::ContextRefreshStatus refresh_status,
- const std::string& context) OVERRIDE;
+ const std::string& context) override;
// syncer::AttachmentService::Delegate implementation.
virtual void OnAttachmentUploaded(
- const syncer::AttachmentId& attachment_id) OVERRIDE;
+ const syncer::AttachmentId& attachment_id) override;
// Similar to above, but returns a SyncError for use by direct clients
// of GenericChangeProcessor that may need more error visibility.
@@ -102,8 +102,8 @@ class GenericChangeProcessor : public ChangeProcessor,
protected:
// ChangeProcessor interface.
- virtual void StartImpl() OVERRIDE; // Does nothing.
- virtual syncer::UserShare* share_handle() const OVERRIDE;
+ virtual void StartImpl() override; // Does nothing.
+ virtual syncer::UserShare* share_handle() const override;
private:
// Logically part of ProcessSyncChanges.
« no previous file with comments | « components/sync_driver/fake_generic_change_processor.h ('k') | components/sync_driver/generic_change_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698