Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: ui/views/event_utils_win.cc

Issue 100303005: Ensure that reposting mouse events on Windows posts the message natively via the PostMessage API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/event_utils_aura.cc ('k') | ui/views/test/test_views_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ui/views/event_utils_aura.cc ('k') | ui/views/test/test_views_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698