Index: chrome/browser/ui/panels/panel.cc |
diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc |
index 118d741303787fd7537f4412433bbf34639dd098..c756a605b383474f833c965784a140385e205bc6 100644 |
--- a/chrome/browser/ui/panels/panel.cc |
+++ b/chrome/browser/ui/panels/panel.cc |
@@ -75,7 +75,7 @@ bool Panel::IsDrawingAttention() const { |
return native_panel_->IsDrawingAttention(); |
} |
-void Panel::Show() { |
+void Panel::Show(BrowserWindow::ShowContext show_context) { |
native_panel_->ShowPanel(); |
} |
@@ -308,7 +308,8 @@ DownloadShelf* Panel::GetDownloadShelf() { |
tabbed_browser->NewTab(); |
} |
- tabbed_browser->window()->Show(); // Ensure download shelf is visible. |
+ // Ensure download shelf is visible. |
+ tabbed_browser->window()->Show(BrowserWindow::SHOW_CONTEXT_NORMAL); |
return tabbed_browser->window()->GetDownloadShelf(); |
} |