Index: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
diff --git a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
index b104c44638938d48c385ce5dc522ce0fbf228ad1..9008a690927c31db32ab292a37491160ca0b9a03 100644 |
--- a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
+++ b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
@@ -312,6 +312,8 @@ void CoreOobeHandler::ShowOobeUI(bool show) { |
} |
void CoreOobeHandler::UpdateA11yState() { |
+#if !defined(USE_ATHENA) |
+ // TODO(dpolukhin): crbug.com/412891 |
DCHECK(MagnificationManager::Get()); |
base::DictionaryValue a11y_info; |
a11y_info.SetBoolean("highContrastEnabled", |
@@ -325,6 +327,7 @@ void CoreOobeHandler::UpdateA11yState() { |
a11y_info.SetBoolean("virtualKeyboardEnabled", |
AccessibilityManager::Get()->IsVirtualKeyboardEnabled()); |
CallJS("refreshA11yInfo", a11y_info); |
+#endif |
} |
void CoreOobeHandler::UpdateOobeUIVisibility() { |