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

Unified Diff: sync/internal_api/sync_backup_manager.h

Issue 629733002: replace OVERRIDE and FINAL with override and final in sync/ (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
« no previous file with comments | « sync/internal_api/public/write_transaction.h ('k') | sync/internal_api/sync_backup_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/sync_backup_manager.h
diff --git a/sync/internal_api/sync_backup_manager.h b/sync/internal_api/sync_backup_manager.h
index 9a9fdbc9d86f98a3600853d60d6df9752aeb2acb..2cfef4803e072dfb27dbda6d45b34c7c258003ea 100644
--- a/sync/internal_api/sync_backup_manager.h
+++ b/sync/internal_api/sync_backup_manager.h
@@ -21,23 +21,23 @@ class SYNC_EXPORT_PRIVATE SyncBackupManager : public SyncRollbackManagerBase {
virtual ~SyncBackupManager();
// SyncManager implementation.
- virtual void Init(InitArgs* args) OVERRIDE;
- virtual void SaveChanges() OVERRIDE;
- virtual SyncStatus GetDetailedStatus() const OVERRIDE;
- virtual void ShutdownOnSyncThread(ShutdownReason reason) OVERRIDE;
+ virtual void Init(InitArgs* args) override;
+ virtual void SaveChanges() override;
+ virtual SyncStatus GetDetailedStatus() const override;
+ virtual void ShutdownOnSyncThread(ShutdownReason reason) override;
// DirectoryChangeDelegate implementation.
virtual ModelTypeSet HandleTransactionEndingChangeEvent(
const syncable::ImmutableWriteTransactionInfo& write_transaction_info,
- syncable::BaseTransaction* trans) OVERRIDE;
+ syncable::BaseTransaction* trans) override;
virtual void RegisterDirectoryTypeDebugInfoObserver(
- syncer::TypeDebugInfoObserver* observer) OVERRIDE;
+ syncer::TypeDebugInfoObserver* observer) override;
virtual void UnregisterDirectoryTypeDebugInfoObserver(
- syncer::TypeDebugInfoObserver* observer) OVERRIDE;
+ syncer::TypeDebugInfoObserver* observer) override;
virtual bool HasDirectoryTypeDebugInfoObserver(
- syncer::TypeDebugInfoObserver* observer) OVERRIDE;
- virtual void RequestEmitDebugInfo() OVERRIDE;
+ syncer::TypeDebugInfoObserver* observer) override;
+ virtual void RequestEmitDebugInfo() override;
private:
// Replaces local IDs with server IDs and clear unsynced bit of modified
« no previous file with comments | « sync/internal_api/public/write_transaction.h ('k') | sync/internal_api/sync_backup_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698