Skip to content

Commit

Permalink
Add a missing "override".
Browse files Browse the repository at this point in the history
No behavior change.

(Probably not really needed for the plugin because of crbug.com/484721
but nice to add anyways.)

BUG=467287
TBR=sky@chromium.org

Review URL: https://codereview.chromium.org/1128423003

Cr-Commit-Position: refs/heads/master@{#328842}
  • Loading branch information
nico authored and Commit bot committed May 7, 2015
1 parent 99a3582 commit bd6a031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/views/win/hwnd_message_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const int WM_NCUAHDRAWFRAME = 0xAF;
WPARAM w_param, \
LPARAM l_param, \
LRESULT& l_result, \
DWORD msg_map_id = 0) { \
DWORD msg_map_id = 0) override { \
base::WeakPtr<HWNDMessageHandler> ref(weak_factory.GetWeakPtr()); \
BOOL old_msg_handled = msg_handled_; \
BOOL ret = _ProcessWindowMessage(hwnd, msg, w_param, l_param, l_result, \
Expand Down

0 comments on commit bd6a031

Please sign in to comment.