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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_win.h

Issue 63061: Fix mouse wheel redirection when omnibox has focus... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 months 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
Index: chrome/browser/autocomplete/autocomplete_edit_view_win.h
===================================================================
--- chrome/browser/autocomplete/autocomplete_edit_view_win.h (revision 13257)
+++ chrome/browser/autocomplete/autocomplete_edit_view_win.h (working copy)
@@ -162,6 +162,7 @@
MSG_WM_MBUTTONUP(OnNonLButtonUp)
MSG_WM_MOUSEACTIVATE(OnMouseActivate)
MSG_WM_MOUSEMOVE(OnMouseMove)
+ MSG_WM_MOUSEWHEEL(OnMouseWheel)
MSG_WM_PAINT(OnPaint)
MSG_WM_PASTE(OnPaste)
MSG_WM_RBUTTONDOWN(OnNonLButtonDown)
@@ -240,6 +241,7 @@
void OnLButtonUp(UINT keys, const CPoint& point);
LRESULT OnMouseActivate(HWND window, UINT hit_test, UINT mouse_message);
void OnMouseMove(UINT keys, const CPoint& point);
+ BOOL OnMouseWheel(UINT flags, short delta, CPoint point);
void OnNonLButtonDown(UINT keys, const CPoint& point);
void OnNonLButtonUp(UINT keys, const CPoint& point);
void OnPaint(HDC bogus_hdc);

Powered by Google App Engine
This is Rietveld 408576698