| Index: ui/chromeos/ime/input_method_menu_manager.cc
|
| diff --git a/ui/chromeos/ime/input_method_menu_manager.cc b/ui/chromeos/ime/input_method_menu_manager.cc
|
| index f4032f83e7d793137a2b2b1e6d25ad43b6af6086..08c053f79988d0ad42147bac90714189bdafad94 100644
|
| --- a/ui/chromeos/ime/input_method_menu_manager.cc
|
| +++ b/ui/chromeos/ime/input_method_menu_manager.cc
|
| @@ -35,9 +35,8 @@ InputMethodMenuManager::GetCurrentInputMethodMenuItemList() const {
|
| void InputMethodMenuManager::SetCurrentInputMethodMenuItemList(
|
| const InputMethodMenuItemList& menu_list) {
|
| menu_list_ = menu_list;
|
| - FOR_EACH_OBSERVER(InputMethodMenuManager::Observer,
|
| - observers_,
|
| - InputMethodMenuItemChanged(this));
|
| + for (InputMethodMenuManager::Observer& observer : observers_)
|
| + observer.InputMethodMenuItemChanged(this);
|
| }
|
|
|
| bool InputMethodMenuManager::HasInputMethodMenuItemForKey(
|
|
|