Chromium Code Reviews| Index: ui/views/event_utils_win.cc |
| =================================================================== |
| --- ui/views/event_utils_win.cc (revision 238186) |
| +++ ui/views/event_utils_win.cc (working copy) |
| @@ -13,8 +13,13 @@ |
| namespace views { |
| -bool RepostLocatedEvent(gfx::NativeWindow window, |
| +#if defined(USE_AURA) |
| +bool RepostLocatedEventWin(HWND window, |
|
sky
2013/12/03 17:16:45
Can't you go with this signature always? Meaning n
|
| + const ui::LocatedEvent& event) { |
| +#else |
| +bool RepostLocatedEvent(gfx::NativeWindow window |
| const ui::LocatedEvent& event) { |
| +#endif |
| if (!window) |
| return false; |