Index: chrome/browser/ui/window_sizer/window_sizer.cc |
diff --git a/chrome/browser/ui/window_sizer/window_sizer.cc b/chrome/browser/ui/window_sizer/window_sizer.cc |
index c2112321bf1eddcf9f384639b90859a7eb5bdbe3..46fa59328c33c556e6c00ec8624675be5341f202 100644 |
--- a/chrome/browser/ui/window_sizer/window_sizer.cc |
+++ b/chrome/browser/ui/window_sizer/window_sizer.cc |
@@ -45,7 +45,7 @@ class DefaultStateProvider : public WindowSizer::StateProvider { |
virtual bool GetPersistentState( |
gfx::Rect* bounds, |
gfx::Rect* work_area, |
- ui::WindowShowState* show_state) const OVERRIDE { |
+ ui::WindowShowState* show_state) const override { |
DCHECK(bounds); |
DCHECK(show_state); |
@@ -87,7 +87,7 @@ class DefaultStateProvider : public WindowSizer::StateProvider { |
virtual bool GetLastActiveWindowState( |
gfx::Rect* bounds, |
- ui::WindowShowState* show_state) const OVERRIDE { |
+ ui::WindowShowState* show_state) const override { |
DCHECK(show_state); |
// Applications are always restored with the same position. |
if (!app_name_.empty()) |
@@ -145,7 +145,7 @@ class DefaultTargetDisplayProvider : public WindowSizer::TargetDisplayProvider { |
virtual gfx::Display GetTargetDisplay( |
const gfx::Screen* screen, |
- const gfx::Rect& bounds) const OVERRIDE { |
+ const gfx::Rect& bounds) const override { |
#if defined(USE_ASH) |
bool force_ash = false; |
// On Windows check if the browser is launched to serve ASH. If yes then |