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

Unified Diff: athena/content/app_activity_proxy.h

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « athena/content/app_activity.h ('k') | athena/content/app_activity_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/app_activity_proxy.h
diff --git a/athena/content/app_activity_proxy.h b/athena/content/app_activity_proxy.h
index 9f3bfbef728a6631c361d02b57f0019c6839c02e..c6eaa793b6ef5c36a28433008fe18303b4ea9f85 100644
--- a/athena/content/app_activity_proxy.h
+++ b/athena/content/app_activity_proxy.h
@@ -33,25 +33,25 @@ class AppActivityProxy : public Activity,
virtual ~AppActivityProxy();
// Activity overrides:
- virtual ActivityViewModel* GetActivityViewModel() OVERRIDE;
- virtual void SetCurrentState(ActivityState state) OVERRIDE;
- virtual ActivityState GetCurrentState() OVERRIDE;
- virtual bool IsVisible() OVERRIDE;
- virtual ActivityMediaState GetMediaState() OVERRIDE;
- virtual aura::Window* GetWindow() OVERRIDE;
- virtual content::WebContents* GetWebContents() OVERRIDE;
+ virtual ActivityViewModel* GetActivityViewModel() override;
+ virtual void SetCurrentState(ActivityState state) override;
+ virtual ActivityState GetCurrentState() override;
+ virtual bool IsVisible() override;
+ virtual ActivityMediaState GetMediaState() override;
+ virtual aura::Window* GetWindow() override;
+ virtual content::WebContents* GetWebContents() override;
// ActivityViewModel overrides:
- virtual void Init() OVERRIDE;
- virtual SkColor GetRepresentativeColor() const OVERRIDE;
- virtual base::string16 GetTitle() const OVERRIDE;
- virtual gfx::ImageSkia GetIcon() const OVERRIDE;
- virtual bool UsesFrame() const OVERRIDE;
- virtual views::View* GetContentsView() OVERRIDE;
- virtual views::Widget* CreateWidget() OVERRIDE;
- virtual gfx::ImageSkia GetOverviewModeImage() OVERRIDE;
- virtual void PrepareContentsForOverview() OVERRIDE;
- virtual void ResetContentsView() OVERRIDE;
+ virtual void Init() override;
+ virtual SkColor GetRepresentativeColor() const override;
+ virtual base::string16 GetTitle() const override;
+ virtual gfx::ImageSkia GetIcon() const override;
+ virtual bool UsesFrame() const override;
+ virtual views::View* GetContentsView() override;
+ virtual views::Widget* CreateWidget() override;
+ virtual gfx::ImageSkia GetOverviewModeImage() override;
+ virtual void PrepareContentsForOverview() override;
+ virtual void ResetContentsView() override;
private:
// The creator of this object which needs to be informed if the object gets
« no previous file with comments | « athena/content/app_activity.h ('k') | athena/content/app_activity_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698