Index: ash/desktop_background/desktop_background_view.cc |
diff --git a/ash/desktop_background/desktop_background_view.cc b/ash/desktop_background/desktop_background_view.cc |
index 1c6f6db7574f97da9907e9603818b0da42ddcc25..3af8599fda938155b9b21778bca9d917098e001c 100644 |
--- a/ash/desktop_background/desktop_background_view.cc |
+++ b/ash/desktop_background/desktop_background_view.cc |
@@ -49,7 +49,7 @@ class LayerControlView : public views::View { |
} |
// Overrides views::View. |
- virtual void Layout() OVERRIDE { |
+ virtual void Layout() override { |
gfx::Display display = Shell::GetScreen()->GetDisplayNearestWindow( |
GetWidget()->GetNativeView()); |
DisplayManager* display_manager = Shell::GetInstance()->display_manager(); |
@@ -83,7 +83,7 @@ class PreEventDispatchHandler : public ui::EventHandler { |
private: |
// ui::EventHandler: |
- virtual void OnMouseEvent(ui::MouseEvent* event) OVERRIDE { |
+ virtual void OnMouseEvent(ui::MouseEvent* event) override { |
CHECK_EQ(ui::EP_PRETARGET, event->phase()); |
WindowSelectorController* controller = |
Shell::GetInstance()->window_selector_controller(); |
@@ -93,7 +93,7 @@ class PreEventDispatchHandler : public ui::EventHandler { |
} |
} |
- virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE { |
+ virtual void OnGestureEvent(ui::GestureEvent* event) override { |
CHECK_EQ(ui::EP_PRETARGET, event->phase()); |
WindowSelectorController* controller = |
Shell::GetInstance()->window_selector_controller(); |