| Index: ash/common/keyboard/keyboard_ui.cc
|
| diff --git a/ash/common/keyboard/keyboard_ui.cc b/ash/common/keyboard/keyboard_ui.cc
|
| index 993b83eba18454a632397909f365e5fd76c52ee4..25ecbd8893b0f812dcbac8b8660029edfc99735d 100644
|
| --- a/ash/common/keyboard/keyboard_ui.cc
|
| +++ b/ash/common/keyboard/keyboard_ui.cc
|
| @@ -46,8 +46,8 @@ class KeyboardUIImpl : public KeyboardUI, public AccessibilityObserver {
|
| return;
|
|
|
| enabled_ = enabled;
|
| - FOR_EACH_OBSERVER(KeyboardUIObserver, *observers(),
|
| - OnKeyboardEnabledStateChanged(enabled));
|
| + for (auto& observer : *observers())
|
| + observer.OnKeyboardEnabledStateChanged(enabled);
|
| }
|
|
|
| private:
|
|
|