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

Unified Diff: ash/wm/overlay_event_filter.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
« no previous file with comments | « ash/wm/mru_window_tracker_unittest.cc ('k') | ash/wm/partial_screenshot_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/overlay_event_filter.h
diff --git a/ash/wm/overlay_event_filter.h b/ash/wm/overlay_event_filter.h
index bcffbe9b804261b5a6bcac77c7f66e7348a6f0c4..0c591e76f0440fedbf9b0c56c6e51f1bd1928642 100644
--- a/ash/wm/overlay_event_filter.h
+++ b/ash/wm/overlay_event_filter.h
@@ -37,7 +37,7 @@ class ASH_EXPORT OverlayEventFilter : public ui::EventHandler,
};
OverlayEventFilter();
- virtual ~OverlayEventFilter();
+ ~OverlayEventFilter() override;
// Starts the filtering of events. It also notifies the specified
// |delegate| when a key event means cancel (like Esc). It holds the
@@ -55,12 +55,12 @@ class ASH_EXPORT OverlayEventFilter : public ui::EventHandler,
bool IsActive();
// ui::EventHandler overrides:
- virtual void OnKeyEvent(ui::KeyEvent* event) override;
+ void OnKeyEvent(ui::KeyEvent* event) override;
// ShellObserver overrides:
- virtual void OnLoginStateChanged(user::LoginStatus status) override;
- virtual void OnAppTerminating() override;
- virtual void OnLockStateChanged(bool locked) override;
+ void OnLoginStateChanged(user::LoginStatus status) override;
+ void OnAppTerminating() override;
+ void OnLockStateChanged(bool locked) override;
private:
FRIEND_TEST_ALL_PREFIXES(PartialScreenshotViewTest, DontStartOverOverlay);
« no previous file with comments | « ash/wm/mru_window_tracker_unittest.cc ('k') | ash/wm/partial_screenshot_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698