| Index: ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| index f442ef1c3cc4400cfc8a4426e465a23510825580..bc0324c13ebff0d22df92f7fb9359a5cb9e81d0d 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| +++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
|
| @@ -985,9 +985,8 @@ int DesktopNativeWidgetAura::GetNonClientComponent(
|
| bool DesktopNativeWidgetAura::ShouldDescendIntoChildForEventHandling(
|
| aura::Window* child,
|
| const gfx::Point& location) {
|
| - views::WidgetDelegate* widget_delegate = GetWidget()->widget_delegate();
|
| - return !widget_delegate ||
|
| - widget_delegate->ShouldDescendIntoChildForEventHandling(child, location);
|
| + return native_widget_delegate_->ShouldDescendIntoChildForEventHandling(
|
| + content_window_->layer(), child, child->layer(), location);
|
| }
|
|
|
| bool DesktopNativeWidgetAura::CanFocus() {
|
|
|