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

Unified Diff: sync/internal_api/sync_backup_manager.h

Issue 642023004: Standardize usage of virtual/override/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_context_proxy_impl.h » ('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 2cfef4803e072dfb27dbda6d45b34c7c258003ea..4fee5e447120e3974327281e757ba39c3586635b 100644
--- a/sync/internal_api/sync_backup_manager.h
+++ b/sync/internal_api/sync_backup_manager.h
@@ -18,26 +18,26 @@ namespace syncer {
class SYNC_EXPORT_PRIVATE SyncBackupManager : public SyncRollbackManagerBase {
public:
SyncBackupManager();
- virtual ~SyncBackupManager();
+ ~SyncBackupManager() override;
// SyncManager implementation.
- virtual void Init(InitArgs* args) override;
- virtual void SaveChanges() override;
- virtual SyncStatus GetDetailedStatus() const override;
- virtual void ShutdownOnSyncThread(ShutdownReason reason) override;
+ void Init(InitArgs* args) override;
+ void SaveChanges() override;
+ SyncStatus GetDetailedStatus() const override;
+ void ShutdownOnSyncThread(ShutdownReason reason) override;
// DirectoryChangeDelegate implementation.
- virtual ModelTypeSet HandleTransactionEndingChangeEvent(
+ ModelTypeSet HandleTransactionEndingChangeEvent(
const syncable::ImmutableWriteTransactionInfo& write_transaction_info,
syncable::BaseTransaction* trans) override;
- virtual void RegisterDirectoryTypeDebugInfoObserver(
+ void RegisterDirectoryTypeDebugInfoObserver(
syncer::TypeDebugInfoObserver* observer) override;
- virtual void UnregisterDirectoryTypeDebugInfoObserver(
+ void UnregisterDirectoryTypeDebugInfoObserver(
syncer::TypeDebugInfoObserver* observer) override;
- virtual bool HasDirectoryTypeDebugInfoObserver(
+ bool HasDirectoryTypeDebugInfoObserver(
syncer::TypeDebugInfoObserver* observer) override;
- virtual void RequestEmitDebugInfo() override;
+ 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_context_proxy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698