| Index: chrome/browser/ui/panels/panel.cc
|
| diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc
|
| index 23e829c0c99220258ef32d5bd07abc12382cec9f..27207e8405f0b64580e94ec01c1ea91508eb69e0 100644
|
| --- a/chrome/browser/ui/panels/panel.cc
|
| +++ b/chrome/browser/ui/panels/panel.cc
|
| @@ -772,7 +772,7 @@ base::string16 Panel::GetWindowTitle() const {
|
| }
|
|
|
| gfx::Image Panel::GetCurrentPageIcon() const {
|
| - return panel_host_->GetPageIcon();
|
| + return panel_host_.get() ? panel_host_->GetPageIcon() : gfx::Image();
|
| }
|
|
|
| void Panel::UpdateTitleBar() {
|
|
|