| Index: views/view.cc
|
| ===================================================================
|
| --- views/view.cc (revision 55065)
|
| +++ views/view.cc (working copy)
|
| @@ -314,8 +314,15 @@
|
| FocusManager* focus_manager = GetFocusManager();
|
| if (focus_manager)
|
| focus_manager->ClearNativeFocus();
|
| +
|
| + // Notify assistive technologies of the focus change.
|
| + NotifyAccessibilityEvent(AccessibilityTypes::EVENT_FOCUS);
|
| }
|
|
|
| +void View::NotifyAccessibilityEvent(AccessibilityTypes::Event event_type) {
|
| + NotifyAccessibilityEvent(event_type, true);
|
| +}
|
| +
|
| void View::SetHotTracked(bool flag) {
|
| }
|
|
|
|
|