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

Unified Diff: ash/first_run/first_run_helper_impl.h

Issue 680153002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting 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 | « ash/first_run/desktop_cleaner.cc ('k') | ash/gpu_support_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/first_run/first_run_helper_impl.h
diff --git a/ash/first_run/first_run_helper_impl.h b/ash/first_run/first_run_helper_impl.h
index fbee996a1384c4f06f7cc31b56d3bfc626f44750..5e091f99debbd94aafd090d19a3d65ef07393f57 100644
--- a/ash/first_run/first_run_helper_impl.h
+++ b/ash/first_run/first_run_helper_impl.h
@@ -18,25 +18,25 @@ class FirstRunHelperImpl : public FirstRunHelper,
public OverlayEventFilter::Delegate {
public:
FirstRunHelperImpl();
- virtual ~FirstRunHelperImpl();
+ ~FirstRunHelperImpl() override;
// Overriden from FirstRunHelper.
- virtual views::Widget* GetOverlayWidget() override;
- virtual void OpenAppList() override;
- virtual void CloseAppList() override;
- virtual gfx::Rect GetLauncherBounds() override;
- virtual gfx::Rect GetAppListButtonBounds() override;
- virtual gfx::Rect GetAppListBounds() override;
- virtual void OpenTrayBubble() override;
- virtual void CloseTrayBubble() override;
- virtual bool IsTrayBubbleOpened() override;
- virtual gfx::Rect GetTrayBubbleBounds() override;
- virtual gfx::Rect GetHelpButtonBounds() override;
+ views::Widget* GetOverlayWidget() override;
+ void OpenAppList() override;
+ void CloseAppList() override;
+ gfx::Rect GetLauncherBounds() override;
+ gfx::Rect GetAppListButtonBounds() override;
+ gfx::Rect GetAppListBounds() override;
+ void OpenTrayBubble() override;
+ void CloseTrayBubble() override;
+ bool IsTrayBubbleOpened() override;
+ gfx::Rect GetTrayBubbleBounds() override;
+ gfx::Rect GetHelpButtonBounds() override;
// Overriden from OverlayEventFilter::Delegate.
- virtual void Cancel() override;
- virtual bool IsCancelingKeyEvent(ui::KeyEvent* event) override;
- virtual aura::Window* GetWindow() override;
+ void Cancel() override;
+ bool IsCancelingKeyEvent(ui::KeyEvent* event) override;
+ aura::Window* GetWindow() override;
private:
views::Widget* widget_;
« no previous file with comments | « ash/first_run/desktop_cleaner.cc ('k') | ash/gpu_support_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698