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

Unified Diff: components/wallpaper/wallpaper_manager_base.h

Issue 824513003: Standardize usage of virtual/override/final specifiers in components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years 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 | « components/translate/content/renderer/renderer_cld_data_provider.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/wallpaper/wallpaper_manager_base.h
diff --git a/components/wallpaper/wallpaper_manager_base.h b/components/wallpaper/wallpaper_manager_base.h
index e81293effad9e04ef28fcf00dfbffff28046412a..fb4415f41393258f37640a59ddbc21118907f92e 100644
--- a/components/wallpaper/wallpaper_manager_base.h
+++ b/components/wallpaper/wallpaper_manager_base.h
@@ -223,7 +223,7 @@ class WALLPAPER_EXPORT WallpaperManagerBase
const std::string& file);
WallpaperManagerBase();
- virtual ~WallpaperManagerBase();
+ ~WallpaperManagerBase() override;
// Returns the appropriate wallpaper resolution for all root windows.
virtual WallpaperResolution GetAppropriateResolution() = 0;
@@ -250,10 +250,9 @@ class WALLPAPER_EXPORT WallpaperManagerBase
virtual void InitializeWallpaper() = 0;
// NotificationObserver overrides:
- virtual void Observe(
- int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override = 0;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override = 0;
// Removes all |user_id| related wallpaper info and saved wallpapers.
virtual void RemoveUserWallpaperInfo(const std::string& user_id) = 0;
« no previous file with comments | « components/translate/content/renderer/renderer_cld_data_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698