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

Unified Diff: ash/wm/system_modal_container_layout_manager.h

Issue 645513008: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: ash/wm/system_modal_container_layout_manager.h
diff --git a/ash/wm/system_modal_container_layout_manager.h b/ash/wm/system_modal_container_layout_manager.h
index e877da3c9dc53548ed172f9a79a6a0b258ff483e..59c0eac89223187f13374182ae1e061c1b8eb4af 100644
--- a/ash/wm/system_modal_container_layout_manager.h
+++ b/ash/wm/system_modal_container_layout_manager.h
@@ -37,25 +37,25 @@ class ASH_EXPORT SystemModalContainerLayoutManager
public keyboard::KeyboardControllerObserver {
public:
explicit SystemModalContainerLayoutManager(aura::Window* container);
- virtual ~SystemModalContainerLayoutManager();
+ ~SystemModalContainerLayoutManager() override;
bool has_modal_background() const { return modal_background_ != NULL; }
// Overridden from SnapToPixelLayoutManager:
- virtual void OnWindowResized() override;
- virtual void OnWindowAddedToLayout(aura::Window* child) override;
- virtual void OnWillRemoveWindowFromLayout(aura::Window* child) 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 SetChildBounds(aura::Window* child,
+ const gfx::Rect& requested_bounds) override;
// Overridden from aura::WindowObserver:
- virtual void OnWindowPropertyChanged(aura::Window* window,
- const void* key,
- intptr_t old) override;
- virtual void OnWindowDestroying(aura::Window* window) override;
+ void OnWindowPropertyChanged(aura::Window* window,
+ const void* key,
+ intptr_t old) override;
+ void OnWindowDestroying(aura::Window* window) override;
// Overridden from keyboard::KeyboardControllerObserver:
- virtual void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override;
+ void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override;
// Can a given |window| receive and handle input events?
bool CanWindowReceiveEvents(aura::Window* window);
« no previous file with comments | « ash/wm/system_modal_container_event_filter.h ('k') | ash/wm/system_modal_container_layout_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698