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

Unified Diff: ui/aura/root_window_host_win.h

Issue 11308083: Fix the html select tag showing up at the wrong position. This was a regression from r166446. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix crash Created 8 years, 1 month 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: ui/aura/root_window_host_win.h
===================================================================
--- ui/aura/root_window_host_win.h (revision 168290)
+++ ui/aura/root_window_host_win.h (working copy)
@@ -63,6 +63,7 @@
MESSAGE_HANDLER_EX(WM_NCACTIVATE, OnNCActivate)
MSG_WM_CLOSE(OnClose)
+ MSG_WM_MOVE(OnMove)
MSG_WM_PAINT(OnPaint)
MSG_WM_SIZE(OnSize)
END_MSG_MAP()
@@ -72,6 +73,7 @@
LRESULT OnMouseRange(UINT message, WPARAM w_param, LPARAM l_param);
LRESULT OnCaptureChanged(UINT message, WPARAM w_param, LPARAM l_param);
LRESULT OnNCActivate(UINT message, WPARAM w_param, LPARAM l_param);
+ void OnMove(const CPoint& point);
void OnPaint(HDC dc);
void OnSize(UINT param, const CSize& size);

Powered by Google App Engine
This is Rietveld 408576698