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

Unified Diff: ui/views/widget/desktop_aura/x11_topmost_window_finder.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/x11_topmost_window_finder.h
diff --git a/ui/views/widget/desktop_aura/x11_topmost_window_finder.h b/ui/views/widget/desktop_aura/x11_topmost_window_finder.h
index a8a2e416e162797970734985e47cc0efed27fe13..12a1aca2d8e0fcf820fd58afc36d69e44460f6b2 100644
--- a/ui/views/widget/desktop_aura/x11_topmost_window_finder.h
+++ b/ui/views/widget/desktop_aura/x11_topmost_window_finder.h
@@ -22,7 +22,7 @@ class VIEWS_EXPORT X11TopmostWindowFinder
: public ui::EnumerateWindowsDelegate {
public:
X11TopmostWindowFinder();
- virtual ~X11TopmostWindowFinder();
+ ~X11TopmostWindowFinder() override;
// Returns the topmost window at |screen_loc|, ignoring the windows in
// |ignore|. Returns NULL if the topmost window at |screen_loc| does not
@@ -35,7 +35,7 @@ class VIEWS_EXPORT X11TopmostWindowFinder
private:
// ui::EnumerateWindowsDelegate:
- virtual bool ShouldStopIterating(XID xid) override;
+ bool ShouldStopIterating(XID xid) override;
// Returns true if |window| does not not belong to |ignore|, is visible and
// contains |screen_loc_|.

Powered by Google App Engine
This is Rietveld 408576698