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

Unified Diff: chrome/browser/ui/panels/panel_browsertest.cc

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/panel_browsertest.cc
diff --git a/chrome/browser/ui/panels/panel_browsertest.cc b/chrome/browser/ui/panels/panel_browsertest.cc
index 74a2a36b1ca8c4e041655edfb41e49c568f5c8a1..24dc3c08f6414f810a4bf530fc2e7cfac62d20c4 100644
--- a/chrome/browser/ui/panels/panel_browsertest.cc
+++ b/chrome/browser/ui/panels/panel_browsertest.cc
@@ -360,10 +360,10 @@ class WaitForStableInitialSize : public TestPanelNotificationObserver {
chrome::NOTIFICATION_PANEL_COLLECTION_UPDATED,
content::NotificationService::AllSources()),
panel_(panel) {}
- virtual ~WaitForStableInitialSize() {}
+ ~WaitForStableInitialSize() override {}
protected:
- virtual bool AtExpectedState() override {
+ bool AtExpectedState() override {
return panel_->GetBounds().height() > panel_->TitleOnlyHeight();
}
Panel* panel_;
@@ -377,10 +377,10 @@ class WaitForAutoResizeWider : public TestPanelNotificationObserver {
content::NotificationService::AllSources()),
panel_(panel),
initial_size_(panel->GetBounds().size()) {}
- virtual ~WaitForAutoResizeWider() {}
+ ~WaitForAutoResizeWider() override {}
protected:
- virtual bool AtExpectedState() override {
+ bool AtExpectedState() override {
return panel_->GetBounds().width() > initial_size_.width();
}
Panel* panel_;
@@ -395,10 +395,10 @@ class WaitForAutoResizeNarrower : public TestPanelNotificationObserver {
content::NotificationService::AllSources()),
panel_(panel),
initial_size_(panel->GetBounds().size()) {}
- virtual ~WaitForAutoResizeNarrower() {}
+ ~WaitForAutoResizeNarrower() override {}
protected:
- virtual bool AtExpectedState() override {
+ bool AtExpectedState() override {
return panel_->GetBounds().width() < initial_size_.width();
}
Panel* panel_;
@@ -1759,7 +1759,7 @@ IN_PROC_BROWSER_TEST_F(PanelBrowserTest,
class PanelExtensionApiTest : public ExtensionApiTest {
protected:
- virtual void SetUpCommandLine(CommandLine* command_line) override {
+ void SetUpCommandLine(CommandLine* command_line) override {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kEnablePanels);
}

Powered by Google App Engine
This is Rietveld 408576698