Index: ash/wm/boot_splash_screen_chromeos.cc |
diff --git a/ash/wm/boot_splash_screen_chromeos.cc b/ash/wm/boot_splash_screen_chromeos.cc |
index c140acd1d19ec91108f548951ff1965471e03f90..f67243d8bca07455aaf6848fd7587ffb104739b2 100644 |
--- a/ash/wm/boot_splash_screen_chromeos.cc |
+++ b/ash/wm/boot_splash_screen_chromeos.cc |
@@ -23,10 +23,10 @@ class BootSplashScreen::CopyHostContentLayerDelegate |
: host_(host) { |
} |
- virtual ~CopyHostContentLayerDelegate() {} |
+ ~CopyHostContentLayerDelegate() override {} |
// ui::LayerDelegate overrides: |
- virtual void OnPaintLayer(gfx::Canvas* canvas) override { |
+ void OnPaintLayer(gfx::Canvas* canvas) override { |
// It'd be safer to copy the area to a canvas in the constructor and then |
// copy from that canvas to this one here, but this appears to work (i.e. we |
// only call this before we draw our first frame) and it saves us an extra |
@@ -43,12 +43,11 @@ class BootSplashScreen::CopyHostContentLayerDelegate |
#endif |
} |
- virtual void OnDelegatedFrameDamage( |
- const gfx::Rect& damage_rect_in_dip) override {} |
+ void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip) override {} |
- virtual void OnDeviceScaleFactorChanged(float device_scale_factor) override {} |
+ void OnDeviceScaleFactorChanged(float device_scale_factor) override {} |
- virtual base::Closure PrepareForLayerBoundsChange() override { |
+ base::Closure PrepareForLayerBoundsChange() override { |
return base::Closure(); |
} |