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

Unified Diff: chrome/browser/ui/views/app_list/linux/app_list_service_linux.h

Issue 681053002: Standardize usage of virtual/override/final specifiers. (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/ui/views/app_list/linux/app_list_linux_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/app_list/linux/app_list_service_linux.h
diff --git a/chrome/browser/ui/views/app_list/linux/app_list_service_linux.h b/chrome/browser/ui/views/app_list/linux/app_list_service_linux.h
index c2be7eb6aadd034633cab23cb015b5860a2e16f5..ff639b7bdcb5c6e23440dd072a977909a5df5b1a 100644
--- a/chrome/browser/ui/views/app_list/linux/app_list_service_linux.h
+++ b/chrome/browser/ui/views/app_list/linux/app_list_service_linux.h
@@ -15,24 +15,24 @@ template <typename T> struct DefaultSingletonTraits;
class AppListServiceLinux : public AppListServiceViews,
public app_list::AppListViewObserver {
public:
- virtual ~AppListServiceLinux();
+ ~AppListServiceLinux() override;
static AppListServiceLinux* GetInstance();
// AppListService overrides:
- virtual void CreateShortcut() override;
+ void CreateShortcut() override;
// app_list::AppListViewObserver overrides:
- virtual void OnActivationChanged(views::Widget* widget, bool active) override;
+ void OnActivationChanged(views::Widget* widget, bool active) override;
private:
friend struct DefaultSingletonTraits<AppListServiceLinux>;
// AppListShowerDelegate overrides:
- virtual void OnViewCreated() override;
- virtual void OnViewBeingDestroyed() override;
- virtual void OnViewDismissed() override;
- virtual void MoveNearCursor(app_list::AppListView* view) override;
+ void OnViewCreated() override;
+ void OnViewBeingDestroyed() override;
+ void OnViewDismissed() override;
+ void MoveNearCursor(app_list::AppListView* view) override;
AppListServiceLinux();
« no previous file with comments | « chrome/browser/ui/views/app_list/linux/app_list_linux_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698