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

Unified Diff: ui/wm/core/transient_window_controller.h

Issue 681873003: 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
« no previous file with comments | « ui/wm/core/shadow_unittest.cc ('k') | ui/wm/core/transient_window_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wm/core/transient_window_controller.h
diff --git a/ui/wm/core/transient_window_controller.h b/ui/wm/core/transient_window_controller.h
index 4322b414e2fffc8838b1c19f0cde18132b274fda..0dcf98981785873e036af1afd52a99a8aa4cd2cd 100644
--- a/ui/wm/core/transient_window_controller.h
+++ b/ui/wm/core/transient_window_controller.h
@@ -16,16 +16,13 @@ class WM_EXPORT TransientWindowController
: public aura::client::TransientWindowClient {
public:
TransientWindowController();
- virtual ~TransientWindowController();
+ ~TransientWindowController() override;
// TransientWindowClient:
- virtual void AddTransientChild(aura::Window* parent,
- aura::Window* child) override;
- virtual void RemoveTransientChild(aura::Window* parent,
- aura::Window* child) override;
- virtual aura::Window* GetTransientParent(aura::Window* window) override;
- virtual const aura::Window* GetTransientParent(
- const aura::Window* window) override;
+ void AddTransientChild(aura::Window* parent, aura::Window* child) override;
+ void RemoveTransientChild(aura::Window* parent, aura::Window* child) override;
+ aura::Window* GetTransientParent(aura::Window* window) override;
+ const aura::Window* GetTransientParent(const aura::Window* window) override;
private:
DISALLOW_COPY_AND_ASSIGN(TransientWindowController);
« no previous file with comments | « ui/wm/core/shadow_unittest.cc ('k') | ui/wm/core/transient_window_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698