| Index: ui/views/cocoa/bridged_content_view.mm
|
| diff --git a/ui/views/cocoa/bridged_content_view.mm b/ui/views/cocoa/bridged_content_view.mm
|
| index 1623e32b8ede82ff2b578ad5500010dca09f991c..e5462f4b5afb34910e0df327bdd94f6f5cbba1f5 100644
|
| --- a/ui/views/cocoa/bridged_content_view.mm
|
| +++ b/ui/views/cocoa/bridged_content_view.mm
|
| @@ -1362,4 +1362,10 @@ ui::KeyEvent GetCharacterEventFromNSEvent(NSEvent* event) {
|
| return [hostedView_->GetNativeViewAccessible() accessibilityHitTest:point];
|
| }
|
|
|
| +- (id)accessibilityFocusedUIElement {
|
| + if (!hostedView_)
|
| + return nil;
|
| + return [hostedView_->GetNativeViewAccessible() accessibilityFocusedUIElement];
|
| +}
|
| +
|
| @end
|
|
|