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

Unified Diff: ui/views/widget/desktop_aura/desktop_focus_rules.h

Issue 678073003: 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: ui/views/widget/desktop_aura/desktop_focus_rules.h
diff --git a/ui/views/widget/desktop_aura/desktop_focus_rules.h b/ui/views/widget/desktop_aura/desktop_focus_rules.h
index a1f32e1e7c0fb4b2cb3a50f5912484c045c3f32b..21d952a74db0bebcaba6457b32b3c4862c90d49f 100644
--- a/ui/views/widget/desktop_aura/desktop_focus_rules.h
+++ b/ui/views/widget/desktop_aura/desktop_focus_rules.h
@@ -12,17 +12,16 @@ namespace views {
class DesktopFocusRules : public wm::BaseFocusRules {
public:
explicit DesktopFocusRules(aura::Window* content_window);
- virtual ~DesktopFocusRules();
+ ~DesktopFocusRules() override;
private:
// Overridden from wm::BaseFocusRules:
- virtual bool CanActivateWindow(aura::Window* window) const override;
- virtual bool SupportsChildActivation(aura::Window* window) const override;
- virtual bool IsWindowConsideredVisibleForActivation(
- aura::Window* window) const override;
- virtual aura::Window* GetToplevelWindow(aura::Window* window) const override;
- virtual aura::Window* GetNextActivatableWindow(
+ bool CanActivateWindow(aura::Window* window) const override;
+ bool SupportsChildActivation(aura::Window* window) const override;
+ bool IsWindowConsideredVisibleForActivation(
aura::Window* window) const override;
+ aura::Window* GetToplevelWindow(aura::Window* window) const override;
+ aura::Window* GetNextActivatableWindow(aura::Window* window) const override;
// The content window. This is an activatable window even though it is a
// child.
« no previous file with comments | « ui/views/widget/desktop_aura/desktop_event_client.h ('k') | ui/views/widget/desktop_aura/desktop_native_cursor_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698