Chromium Code Reviews| Index: views/widget/native_widget_win.cc |
| diff --git a/views/widget/native_widget_win.cc b/views/widget/native_widget_win.cc |
| index a8b61b7a8f02b7f5cba0390e1a803997a7e9b3cc..34103c1c9be12ea4da09685e9a18613f84076351 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) { |
|
msw
2011/09/27 01:16:46
name/type
oshima
2011/09/27 02:12:12
Done.
|
| + return base::EVENT_CONTINUE; |
| } |
| -void NativeWidgetWin::DidProcessMessage(const MSG& msg) { |
| +void NativeWidgetWin::DidProcessEvent(const MSG& msg) { |
| RedrawInvalidRect(); |
| } |