Index: ui/views/widget/hwnd_message_handler.h |
=================================================================== |
--- ui/views/widget/hwnd_message_handler.h (revision 152346) |
+++ ui/views/widget/hwnd_message_handler.h (working copy) |
@@ -48,6 +48,15 @@ |
LRESULT OnEraseBkgnd(HDC dc); |
void OnExitMenuLoop(BOOL is_track_popup_menu); |
void OnExitSizeMove(); |
+ LRESULT OnImeMessages(UINT message, WPARAM w_param, LPARAM l_param); |
+ void OnInputLangChange(DWORD character_set, HKL input_language_id); |
+ void OnMove(const CPoint& point); |
+ void OnMoving(UINT param, const RECT* new_bounds); |
+ LRESULT OnNCUAHDrawCaption(UINT message, WPARAM w_param, LPARAM l_param); |
+ LRESULT OnNCUAHDrawFrame(UINT message, WPARAM w_param, LPARAM l_param); |
+ LRESULT OnPowerBroadcast(DWORD power_event, DWORD data); |
+ void OnThemeChanged(); |
+ void OnVScroll(int scroll_type, short position, HWND scrollbar); |
// TODO(beng): Can be removed once this object becomes the WindowImpl. |
bool remove_standard_frame() const { return remove_standard_frame_; } |
@@ -56,7 +65,16 @@ |
} |
private: |
+ // TODO(beng): This won't be a style violation once this object becomes the |
+ // WindowImpl. |
+ HWND hwnd(); |
+ |
// TODO(beng): Remove once this class becomes the WindowImpl. |
+ LRESULT DefWindowProcWithRedrawLock(UINT message, |
+ WPARAM w_param, |
+ LPARAM l_param); |
+ |
+ // TODO(beng): Remove once this class becomes the WindowImpl. |
void SetMsgHandled(BOOL handled); |
HWNDMessageHandlerDelegate* delegate_; |