| 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.
|
|
|