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

Unified Diff: chrome/browser/ui/app_list/app_list_controller_delegate_views.h

Issue 681823004: 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 | « no previous file | chrome/browser/ui/app_list/app_list_positioner_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/app_list/app_list_controller_delegate_views.h
diff --git a/chrome/browser/ui/app_list/app_list_controller_delegate_views.h b/chrome/browser/ui/app_list/app_list_controller_delegate_views.h
index 7685edba7c615047940ed35f978539f124d77602..7550ae7d802f3464aa8dfcd7d7307ede13e281fa 100644
--- a/chrome/browser/ui/app_list/app_list_controller_delegate_views.h
+++ b/chrome/browser/ui/app_list/app_list_controller_delegate_views.h
@@ -14,14 +14,14 @@ class AppListServiceViews;
class AppListControllerDelegateViews : public AppListControllerDelegateImpl {
public:
explicit AppListControllerDelegateViews(AppListServiceViews* service);
- virtual ~AppListControllerDelegateViews();
+ ~AppListControllerDelegateViews() override;
// AppListControllerDelegate overrides:
- virtual gfx::Rect GetAppListBounds() override;
- virtual void ViewClosing() override;
- virtual void OnShowChildDialog() override;
- virtual void OnCloseChildDialog() override;
- virtual bool CanDoCreateShortcutsFlow() override;
+ gfx::Rect GetAppListBounds() override;
+ void ViewClosing() override;
+ void OnShowChildDialog() override;
+ void OnCloseChildDialog() override;
+ bool CanDoCreateShortcutsFlow() override;
private:
AppListServiceViews* service_; // Weak. Owns us.
« no previous file with comments | « no previous file | chrome/browser/ui/app_list/app_list_positioner_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698