| 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);
|
| }
|
|
|