Chromium Code Reviews| Index: ash/common/system/chromeos/ime_menu/ime_menu_tray.cc |
| diff --git a/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc b/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc |
| index cf8bf8c3a79e8adb3a62d84b5be2359a438d569d..1981e0a9625417c24a68b32ab4500e45659f3e68 100644 |
| --- a/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc |
| +++ b/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc |
| @@ -473,13 +473,8 @@ bool ImeMenuTray::PerformAction(const ui::Event& event) { |
| void ImeMenuTray::OnIMERefresh() { |
| UpdateTrayLabel(); |
| if (bubble_ && ime_list_view_) { |
| - SystemTrayDelegate* delegate = WmShell::Get()->system_tray_delegate(); |
| - IMEInfoList list; |
| - delegate->GetAvailableIMEList(&list); |
| - IMEPropertyInfoList property_list; |
| - delegate->GetCurrentIMEProperties(&property_list); |
| - ime_list_view_->Update(list, property_list, false, |
| - ImeListView::SHOW_SINGLE_IME); |
| + HideImeMenuBubble(); |
| + ShowImeMenuBubble(); |
|
tdanderson
2016/11/30 23:04:15
I'm not sure that hiding and re-showing the bubble
Azure Wei
2016/12/01 00:33:30
The IME detailed view and opt-in menu shares the s
|
| } |
| } |