| Index: ui/views/view.cc
|
| diff --git a/ui/views/view.cc b/ui/views/view.cc
|
| index 9c685fd4af9aedd8a9464546bb96400215877144..6f5122faae7caacc663d07dbb8ed4355005aa0c8 100644
|
| --- a/ui/views/view.cc
|
| +++ b/ui/views/view.cc
|
| @@ -409,8 +409,10 @@ void View::SetVisible(bool visible) {
|
| AdvanceFocusIfNecessary();
|
|
|
| // Notify the parent.
|
| - if (parent_)
|
| + if (parent_) {
|
| parent_->ChildVisibilityChanged(this);
|
| + parent_->NotifyAccessibilityEvent(ui::AX_EVENT_CHILDREN_CHANGED, false);
|
| + }
|
|
|
| // This notifies all sub-views recursively.
|
| PropagateVisibilityNotifications(this, visible_);
|
|
|