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

Unified Diff: chrome/browser/sync/sync_startup_tracker.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
« no previous file with comments | « chrome/browser/sync/sync_policy_handler.h ('k') | chrome/browser/sync/sync_ui_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/sync_startup_tracker.h
diff --git a/chrome/browser/sync/sync_startup_tracker.h b/chrome/browser/sync/sync_startup_tracker.h
index acffd29c7ffa487f12d1b819e0c873e36fa6699c..acac4a0b31634600cf9471e54156e55a52741e9c 100644
--- a/chrome/browser/sync/sync_startup_tracker.h
+++ b/chrome/browser/sync/sync_startup_tracker.h
@@ -29,7 +29,7 @@ class SyncStartupTracker : public ProfileSyncServiceObserver {
};
SyncStartupTracker(Profile* profile, Observer* observer);
- virtual ~SyncStartupTracker();
+ ~SyncStartupTracker() override;
enum SyncServiceState {
// Sync backend is still starting up.
@@ -46,7 +46,7 @@ class SyncStartupTracker : public ProfileSyncServiceObserver {
static SyncServiceState GetSyncServiceState(Profile* profile);
// ProfileSyncServiceObserver implementation.
- virtual void OnStateChanged() override;
+ void OnStateChanged() override;
private:
// Checks the current service state and notifies |observer_| if the state
« no previous file with comments | « chrome/browser/sync/sync_policy_handler.h ('k') | chrome/browser/sync/sync_ui_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698