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

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

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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 7e151283912978e45a5738745bac79a368fd5c57..74a2a36b1ca8c4e041655edfb41e49c568f5c8a1 100644
--- a/chrome/browser/ui/panels/panel_browsertest.cc
+++ b/chrome/browser/ui/panels/panel_browsertest.cc
@@ -363,7 +363,7 @@ class WaitForStableInitialSize : public TestPanelNotificationObserver {
virtual ~WaitForStableInitialSize() {}
protected:
- virtual bool AtExpectedState() OVERRIDE {
+ virtual bool AtExpectedState() override {
return panel_->GetBounds().height() > panel_->TitleOnlyHeight();
}
Panel* panel_;
@@ -380,7 +380,7 @@ class WaitForAutoResizeWider : public TestPanelNotificationObserver {
virtual ~WaitForAutoResizeWider() {}
protected:
- virtual bool AtExpectedState() OVERRIDE {
+ virtual bool AtExpectedState() override {
return panel_->GetBounds().width() > initial_size_.width();
}
Panel* panel_;
@@ -398,7 +398,7 @@ class WaitForAutoResizeNarrower : public TestPanelNotificationObserver {
virtual ~WaitForAutoResizeNarrower() {}
protected:
- virtual bool AtExpectedState() OVERRIDE {
+ virtual 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 {
+ virtual void SetUpCommandLine(CommandLine* command_line) override {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kEnablePanels);
}
« no previous file with comments | « chrome/browser/ui/panels/panel_bounds_animation.h ('k') | chrome/browser/ui/panels/panel_drag_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698