| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/views/bubble/bubble_dialog_delegate.h" | 5 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "ui/accessibility/ax_view_state.h" | 8 #include "ui/accessibility/ax_node_data.h" |
| 9 #include "ui/base/material_design/material_design_controller.h" | 9 #include "ui/base/material_design/material_design_controller.h" |
| 10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
| 11 #include "ui/gfx/color_utils.h" | 11 #include "ui/gfx/color_utils.h" |
| 12 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
| 13 #include "ui/native_theme/native_theme.h" | 13 #include "ui/native_theme/native_theme.h" |
| 14 #include "ui/views/bubble/bubble_frame_view.h" | 14 #include "ui/views/bubble/bubble_frame_view.h" |
| 15 #include "ui/views/focus/view_storage.h" | 15 #include "ui/views/focus/view_storage.h" |
| 16 #include "ui/views/layout/layout_constants.h" | 16 #include "ui/views/layout/layout_constants.h" |
| 17 #include "ui/views/widget/widget.h" | 17 #include "ui/views/widget/widget.h" |
| 18 #include "ui/views/widget/widget_observer.h" | 18 #include "ui/views/widget/widget_observer.h" |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 if (widget == GetWidget() && anchor_widget() && | 305 if (widget == GetWidget() && anchor_widget() && |
| 306 anchor_widget()->GetTopLevelWidget()) { | 306 anchor_widget()->GetTopLevelWidget()) { |
| 307 anchor_widget()->GetTopLevelWidget()->SetAlwaysRenderAsActive(visible); | 307 anchor_widget()->GetTopLevelWidget()->SetAlwaysRenderAsActive(visible); |
| 308 } | 308 } |
| 309 | 309 |
| 310 // Fire AX_EVENT_ALERT for bubbles marked as AX_ROLE_ALERT_DIALOG; this | 310 // Fire AX_EVENT_ALERT for bubbles marked as AX_ROLE_ALERT_DIALOG; this |
| 311 // instructs accessibility tools to read the bubble in its entirety rather | 311 // instructs accessibility tools to read the bubble in its entirety rather |
| 312 // than just its title and initially focused view. See | 312 // than just its title and initially focused view. See |
| 313 // http://crbug.com/474622 for details. | 313 // http://crbug.com/474622 for details. |
| 314 if (widget == GetWidget() && visible) { | 314 if (widget == GetWidget() && visible) { |
| 315 ui::AXViewState state; | 315 ui::AXNodeData node_data; |
| 316 GetAccessibleState(&state); | 316 GetAccessibleNodeData(&node_data); |
| 317 if (state.role == ui::AX_ROLE_ALERT_DIALOG) | 317 if (node_data.role == ui::AX_ROLE_ALERT_DIALOG) |
| 318 NotifyAccessibilityEvent(ui::AX_EVENT_ALERT, true); | 318 NotifyAccessibilityEvent(ui::AX_EVENT_ALERT, true); |
| 319 } | 319 } |
| 320 } | 320 } |
| 321 | 321 |
| 322 } // namespace views | 322 } // namespace views |
| OLD | NEW |