| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 25b2262f9b04b79d4d62996514af921e0998a259..04d9450f6333ee12d24cbf2f6ec915e7e220b2f7 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2842,8 +2842,9 @@ bool RenderFrameHostImpl::IsSameSiteInstance(
|
| return GetSiteInstance() == other_render_frame_host->GetSiteInstance();
|
| }
|
|
|
| -void RenderFrameHostImpl::SetAccessibilityMode(AccessibilityMode mode) {
|
| - Send(new FrameMsg_SetAccessibilityMode(routing_id_, mode));
|
| +void RenderFrameHostImpl::UpdateAccessibilityMode() {
|
| + AccessibilityMode accessibility_mode = delegate_->GetAccessibilityMode();
|
| + Send(new FrameMsg_SetAccessibilityMode(routing_id_, accessibility_mode));
|
| }
|
|
|
| void RenderFrameHostImpl::RequestAXTreeSnapshot(
|
|
|