| Index: ash/shelf/shelf_widget.cc
|
| diff --git a/ash/shelf/shelf_widget.cc b/ash/shelf/shelf_widget.cc
|
| index 74dfb5c88eab7ba3d8f95b36d553f13c027cc46f..f9d324e50ce44018fdf4e0cecb4190733644099f 100644
|
| --- a/ash/shelf/shelf_widget.cc
|
| +++ b/ash/shelf/shelf_widget.cc
|
| @@ -69,21 +69,21 @@ class ShelfWidget::DelegateView : public views::WidgetDelegate,
|
| bool GetDimmed() const { return dimmed_; }
|
|
|
| // views::View overrides:
|
| - void OnPaintBackground(gfx::Canvas* canvas) OVERRIDE;
|
| + virtual void OnPaintBackground(gfx::Canvas* canvas) OVERRIDE;
|
|
|
| // views::WidgetDelegateView overrides:
|
| - views::Widget* GetWidget() OVERRIDE {
|
| + virtual views::Widget* GetWidget() OVERRIDE {
|
| return View::GetWidget();
|
| }
|
| - const views::Widget* GetWidget() const OVERRIDE {
|
| + virtual const views::Widget* GetWidget() const OVERRIDE {
|
| return View::GetWidget();
|
| }
|
|
|
| - bool CanActivate() const OVERRIDE;
|
| - void Layout() OVERRIDE;
|
| + virtual bool CanActivate() const OVERRIDE;
|
| + virtual void Layout() OVERRIDE;
|
|
|
| // BackgroundAnimatorDelegate overrides:
|
| - void UpdateBackground(int alpha) OVERRIDE;
|
| + virtual void UpdateBackground(int alpha) OVERRIDE;
|
|
|
| private:
|
| ShelfWidget* shelf_;
|
|
|