| Index: athena/home/minimized_home.cc
|
| diff --git a/athena/home/minimized_home.cc b/athena/home/minimized_home.cc
|
| index 2b0bafb8d6638a4a7a949cca3ae5b28d78ff2880..a257112035314e397bbb4700e072f82c5c53e49b 100644
|
| --- a/athena/home/minimized_home.cc
|
| +++ b/athena/home/minimized_home.cc
|
| @@ -26,7 +26,7 @@ class MinimizedHomePainter : public ui::LayerDelegate,
|
|
|
| private:
|
| // ui::LayerDelegate:
|
| - virtual void OnPaintLayer(gfx::Canvas* canvas) OVERRIDE {
|
| + virtual void OnPaintLayer(gfx::Canvas* canvas) override {
|
| gfx::Rect bounds(layer()->GetTargetBounds().size());
|
| canvas->FillRect(bounds, SK_ColorBLACK);
|
| canvas->FillRect(gfx::Rect((bounds.width() - kDragHandleWidth) / 2,
|
| @@ -37,13 +37,13 @@ class MinimizedHomePainter : public ui::LayerDelegate,
|
| }
|
|
|
| virtual void OnDelegatedFrameDamage(
|
| - const gfx::Rect& damage_rect_in_dip) OVERRIDE {
|
| + const gfx::Rect& damage_rect_in_dip) override {
|
| }
|
|
|
| - virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE {
|
| + virtual void OnDeviceScaleFactorChanged(float device_scale_factor) override {
|
| }
|
|
|
| - virtual base::Closure PrepareForLayerBoundsChange() OVERRIDE {
|
| + virtual base::Closure PrepareForLayerBoundsChange() override {
|
| return base::Closure();
|
| }
|
|
|
|
|