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