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

Unified Diff: chrome/browser/ui/ash/app_sync_ui_state.h

Issue 686563002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/ui/ash/app_sync_ui_state.h
diff --git a/chrome/browser/ui/ash/app_sync_ui_state.h b/chrome/browser/ui/ash/app_sync_ui_state.h
index 263e2ef239738139e4e03cd1ce74b79008c8a9c2..4a52ccefa014fc155441f4076cf56c3d836beaac 100644
--- a/chrome/browser/ui/ash/app_sync_ui_state.h
+++ b/chrome/browser/ui/ash/app_sync_ui_state.h
@@ -46,7 +46,7 @@ class AppSyncUIState : public KeyedService,
static bool ShouldObserveAppSyncForProfile(Profile* profile);
explicit AppSyncUIState(Profile* profile);
- virtual ~AppSyncUIState();
+ ~AppSyncUIState() override;
void AddObserver(AppSyncUIStateObserver* observer);
void RemoveObserver(AppSyncUIStateObserver* observer);
@@ -68,12 +68,11 @@ class AppSyncUIState : public KeyedService,
void OnMaxSyncingTimer();
// ProfileSyncServiceObserver overrides:
- virtual void OnStateChanged() override;
+ void OnStateChanged() override;
// extensions::ExtensionRegistryObserver overrides:
- virtual void OnExtensionLoaded(
- content::BrowserContext* browser_context,
- const extensions::Extension* extension) override;
+ void OnExtensionLoaded(content::BrowserContext* browser_context,
+ const extensions::Extension* extension) override;
Profile* profile_;
ProfileSyncService* sync_service_;

Powered by Google App Engine
This is Rietveld 408576698