| Index: views/widget/native_widget_win.cc
|
| diff --git a/views/widget/native_widget_win.cc b/views/widget/native_widget_win.cc
|
| index f94c3bf45d31e818cd0a41f42520456f170f44f4..666bc94703ce66c41df792c8024a95a5a109b45f 100644
|
| --- a/views/widget/native_widget_win.cc
|
| +++ b/views/widget/native_widget_win.cc
|
| @@ -1121,10 +1121,11 @@ gfx::Rect NativeWidgetWin::GetWorkAreaBoundsInScreen() const {
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // NativeWidgetWin, MessageLoop::Observer implementation:
|
|
|
| -void NativeWidgetWin::WillProcessMessage(const MSG& msg) {
|
| +base::EventStatus NativeWidgetWin::WillProcessEvent(const MSG& msg) {
|
| + return base::EVENT_CONTINUE;
|
| }
|
|
|
| -void NativeWidgetWin::DidProcessMessage(const MSG& msg) {
|
| +void NativeWidgetWin::DidProcessEvent(const MSG& msg) {
|
| RedrawInvalidRect();
|
| }
|
|
|
|
|