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

Unified Diff: chrome/browser/ui/panels/test_panel_active_state_observer.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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: chrome/browser/ui/panels/test_panel_active_state_observer.h
diff --git a/chrome/browser/ui/panels/test_panel_active_state_observer.h b/chrome/browser/ui/panels/test_panel_active_state_observer.h
index dc852b25df6cd2898646e41c9c3f65c6c867c5c3..4059b427a0f8c75b9850b25bac7061f697167f8b 100644
--- a/chrome/browser/ui/panels/test_panel_active_state_observer.h
+++ b/chrome/browser/ui/panels/test_panel_active_state_observer.h
@@ -17,11 +17,11 @@ class PanelActiveStateObserver : public TestPanelNotificationObserver {
// for the specified panel to detect a change to the expected active
// state.
PanelActiveStateObserver(Panel* panel, bool expect_active);
- virtual ~PanelActiveStateObserver();
+ ~PanelActiveStateObserver() override;
private:
// TestNotificationObserver override:
- virtual bool AtExpectedState() override;
+ bool AtExpectedState() override;
Panel* panel_;
bool expect_active_;

Powered by Google App Engine
This is Rietveld 408576698