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

Unified Diff: athena/home/home_card_impl.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/home/home_card_gesture_manager_unittest.cc ('k') | athena/home/home_card_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/home/home_card_impl.h
diff --git a/athena/home/home_card_impl.h b/athena/home/home_card_impl.h
index 12350952f18fc693c73a6d1864b6062ee48a809f..0f7b330503c2ee757deeff28f1da714c9cdb445f 100644
--- a/athena/home/home_card_impl.h
+++ b/athena/home/home_card_impl.h
@@ -63,35 +63,35 @@ class ATHENA_EXPORT HomeCardImpl
void InstallAccelerators();
// Overridden from HomeCard:
- virtual void SetState(HomeCard::State state) OVERRIDE;
- virtual State GetState() OVERRIDE;
+ virtual void SetState(HomeCard::State state) override;
+ virtual State GetState() override;
virtual void RegisterSearchProvider(
- app_list::SearchProvider* search_provider) OVERRIDE;
+ app_list::SearchProvider* search_provider) override;
virtual void UpdateVirtualKeyboardBounds(
- const gfx::Rect& bounds) OVERRIDE;
+ const gfx::Rect& bounds) override;
// AcceleratorHandler:
- virtual bool IsCommandEnabled(int command_id) const OVERRIDE;
+ virtual bool IsCommandEnabled(int command_id) const override;
virtual bool OnAcceleratorFired(int command_id,
- const ui::Accelerator& accelerator) OVERRIDE;
+ const ui::Accelerator& accelerator) override;
// HomeCardGestureManager::Delegate:
virtual void OnGestureEnded(HomeCard::State final_state,
- bool is_fling) OVERRIDE;
+ bool is_fling) override;
virtual void OnGestureProgressed(
HomeCard::State from_state,
HomeCard::State to_state,
- float progress) OVERRIDE;
+ float progress) override;
// WindowManagerObserver:
- virtual void OnOverviewModeEnter() OVERRIDE;
- virtual void OnOverviewModeExit() OVERRIDE;
- virtual void OnSplitViewModeEnter() OVERRIDE;
- virtual void OnSplitViewModeExit() OVERRIDE;
+ virtual void OnOverviewModeEnter() override;
+ virtual void OnOverviewModeExit() override;
+ virtual void OnSplitViewModeEnter() override;
+ virtual void OnSplitViewModeExit() override;
// aura::client::ActivationChangeObserver:
virtual void OnWindowActivated(aura::Window* gained_active,
- aura::Window* lost_active) OVERRIDE;
+ aura::Window* lost_active) override;
scoped_ptr<AppModelBuilder> model_builder_;
« no previous file with comments | « athena/home/home_card_gesture_manager_unittest.cc ('k') | athena/home/home_card_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698