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

Unified Diff: chrome/browser/sync/test/integration/migration_watcher.h

Issue 666733003: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/sync/test/integration/migration_watcher.h
diff --git a/chrome/browser/sync/test/integration/migration_watcher.h b/chrome/browser/sync/test/integration/migration_watcher.h
index 00f42caf7b2a12f0dbc211dfe4b75c94226f7010..31458b2bf4982cedb956876ac5e15c360b01e8d7 100644
--- a/chrome/browser/sync/test/integration/migration_watcher.h
+++ b/chrome/browser/sync/test/integration/migration_watcher.h
@@ -16,7 +16,7 @@ class MigrationWaiter;
class MigrationWatcher : public browser_sync::MigrationObserver {
public:
explicit MigrationWatcher(ProfileSyncServiceHarness* harness);
- virtual ~MigrationWatcher();
+ ~MigrationWatcher() override;
// Returns true if the observed profile has a migration in progress.
bool HasPendingBackendMigration() const;
@@ -25,7 +25,7 @@ class MigrationWatcher : public browser_sync::MigrationObserver {
syncer::ModelTypeSet GetMigratedTypes() const;
// Implementation of browser_sync::MigrationObserver.
- virtual void OnMigrationStateChange() override;
+ void OnMigrationStateChange() override;
// Registers the |waiter| to receive callbacks on migration state change.
void set_migration_waiter(MigrationWaiter* waiter);

Powered by Google App Engine
This is Rietveld 408576698