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

Unified Diff: chrome/browser/ui/panels/panel_bounds_animation.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/panels/panel.cc ('k') | chrome/browser/ui/panels/panel_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel_bounds_animation.h
diff --git a/chrome/browser/ui/panels/panel_bounds_animation.h b/chrome/browser/ui/panels/panel_bounds_animation.h
index 16bde4a6d9a30d2c85579a83fd168a8633e35a0d..ca229328757ebfbd5466b452405dcf5d4ed0ae3b 100644
--- a/chrome/browser/ui/panels/panel_bounds_animation.h
+++ b/chrome/browser/ui/panels/panel_bounds_animation.h
@@ -19,7 +19,7 @@ class PanelBoundsAnimation : public gfx::LinearAnimation {
const gfx::Rect& initial_bounds,
const gfx::Rect& final_bounds);
virtual ~PanelBoundsAnimation();
- virtual double GetCurrentValue() const OVERRIDE;
+ virtual double GetCurrentValue() const override;
// Static because it is reused on Mac to override NSAnimation's calculation.
static double ComputeAnimationValue(double progress,
@@ -27,7 +27,7 @@ class PanelBoundsAnimation : public gfx::LinearAnimation {
double animation_stop_to_show_titlebar);
protected:
- virtual void AnimateToState(double state) OVERRIDE {}
+ virtual void AnimateToState(double state) override {}
private:
Panel* panel_; // Weak, owns us.
« no previous file with comments | « chrome/browser/ui/panels/panel.cc ('k') | chrome/browser/ui/panels/panel_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698