Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: ash/snap_to_pixel_layout_manager.h

Issue 680153002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shell_unittest.cc ('k') | ash/sticky_keys/sticky_keys_overlay.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/snap_to_pixel_layout_manager.h
diff --git a/ash/snap_to_pixel_layout_manager.h b/ash/snap_to_pixel_layout_manager.h
index 21abe8ecd8276300b57b20c9181ffb21c2d4448f..a5233d422dc03c82c3298f81bfa301bd9a0a45bf 100644
--- a/ash/snap_to_pixel_layout_manager.h
+++ b/ash/snap_to_pixel_layout_manager.h
@@ -16,18 +16,18 @@ namespace ash {
class ASH_EXPORT SnapToPixelLayoutManager : public aura::LayoutManager {
public:
explicit SnapToPixelLayoutManager(aura::Window* container);
- virtual ~SnapToPixelLayoutManager();
+ ~SnapToPixelLayoutManager() override;
protected:
// Overridden from aura::LayoutManager:
- virtual void OnWindowResized() override;
- virtual void OnWindowAddedToLayout(aura::Window* child) override;
- virtual void OnWillRemoveWindowFromLayout(aura::Window* child) override;
- virtual void OnWindowRemovedFromLayout(aura::Window* child) override;
- virtual void OnChildWindowVisibilityChanged(aura::Window* child,
- bool visibile) override;
- virtual void SetChildBounds(aura::Window* child,
- const gfx::Rect& requested_bounds) override;
+ void OnWindowResized() override;
+ void OnWindowAddedToLayout(aura::Window* child) override;
+ void OnWillRemoveWindowFromLayout(aura::Window* child) override;
+ void OnWindowRemovedFromLayout(aura::Window* child) override;
+ void OnChildWindowVisibilityChanged(aura::Window* child,
+ bool visibile) override;
+ void SetChildBounds(aura::Window* child,
+ const gfx::Rect& requested_bounds) override;
private:
DISALLOW_COPY_AND_ASSIGN(SnapToPixelLayoutManager);
« no previous file with comments | « ash/shell_unittest.cc ('k') | ash/sticky_keys/sticky_keys_overlay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698