| Index: ash/system/tray/system_tray.cc
|
| diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
|
| index e1890daadac86ae353ebcd0020904e1f4415a70b..00a04c08e1f91fec08bf7c8d7428456f58249910 100644
|
| --- a/ash/system/tray/system_tray.cc
|
| +++ b/ash/system/tray/system_tray.cc
|
| @@ -238,7 +238,8 @@ void SystemTray::ShowDetailedView(SystemTrayItem* item,
|
| std::vector<SystemTrayItem*> items;
|
| items.push_back(item);
|
| ShowItems(items, true, activate, creation_type, GetTrayXOffset(item));
|
| - system_bubble_->bubble()->StartAutoCloseTimer(close_delay);
|
| + if (system_bubble_.get())
|
| + system_bubble_->bubble()->StartAutoCloseTimer(close_delay);
|
| }
|
|
|
| void SystemTray::SetDetailedViewCloseDelay(int close_delay) {
|
|
|