| Index: chrome/browser/chromeos/login/wizard_accessibility_handler.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/wizard_accessibility_handler.cc (revision 91771)
|
| +++ chrome/browser/chromeos/login/wizard_accessibility_handler.cc (working copy)
|
| @@ -138,19 +138,19 @@
|
| *out_earcon = NO_EARCON;
|
|
|
| switch (event_type.value) {
|
| - case NotificationType::ACCESSIBILITY_CONTROL_FOCUSED:
|
| + case chrome::ACCESSIBILITY_CONTROL_FOCUSED:
|
| DescribeControl(control_info, false, out_spoken_description, out_earcon);
|
| break;
|
| - case NotificationType::ACCESSIBILITY_CONTROL_ACTION:
|
| + case chrome::ACCESSIBILITY_CONTROL_ACTION:
|
| DescribeControl(control_info, true, out_spoken_description, out_earcon);
|
| break;
|
| - case NotificationType::ACCESSIBILITY_TEXT_CHANGED:
|
| + case chrome::ACCESSIBILITY_TEXT_CHANGED:
|
| DescribeTextChanged(control_info, out_spoken_description, out_earcon);
|
| break;
|
| - case NotificationType::ACCESSIBILITY_MENU_OPENED:
|
| + case chrome::ACCESSIBILITY_MENU_OPENED:
|
| *out_earcon = EARCON_OBJECT_OPENED;
|
| break;
|
| - case NotificationType::ACCESSIBILITY_MENU_CLOSED:
|
| + case chrome::ACCESSIBILITY_MENU_CLOSED:
|
| *out_earcon = EARCON_OBJECT_CLOSED;
|
| break;
|
| default:
|
|
|