| Index: ui/views/widget/native_widget_win.cc
|
| diff --git a/ui/views/widget/native_widget_win.cc b/ui/views/widget/native_widget_win.cc
|
| index 513b7fb999d5991685a23efd328673bfcd14e35c..ede049e6e11767a0bf57947d692050ca3158dc63 100644
|
| --- a/ui/views/widget/native_widget_win.cc
|
| +++ b/ui/views/widget/native_widget_win.cc
|
| @@ -1613,14 +1613,12 @@ LRESULT NativeWidgetWin::OnMouseRange(UINT message,
|
| }
|
|
|
| void NativeWidgetWin::OnMove(const CPoint& point) {
|
| - // TODO(beng): move to Widget.
|
| - GetWidget()->widget_delegate()->OnWidgetMove();
|
| + delegate_->OnNativeWidgetMove();
|
| SetMsgHandled(FALSE);
|
| }
|
|
|
| void NativeWidgetWin::OnMoving(UINT param, const LPRECT new_bounds) {
|
| - // TODO(beng): move to Widget.
|
| - GetWidget()->widget_delegate()->OnWidgetMove();
|
| + delegate_->OnNativeWidgetMove();
|
| }
|
|
|
| LRESULT NativeWidgetWin::OnNCActivate(BOOL active) {
|
|
|