summaryrefslogtreecommitdiffstats
path: root/chrome/views/event.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/views/event.cc')
-rw-r--r--chrome/views/event.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/views/event.cc b/chrome/views/event.cc
index 5a3d42b..5a6081b 100644
--- a/chrome/views/event.cc
+++ b/chrome/views/event.cc
@@ -79,7 +79,8 @@ MouseEvent::MouseEvent(const MouseEvent& model, View* from, View* to)
int KeyEvent::GetKeyStateFlags() const {
// Windows Keyboard messages don't come with control key state as parameters
- // like mouse messages do, so we need to explicitly probe for these key states.
+ // like mouse messages do, so we need to explicitly probe for these key
+ // states.
int flags = 0;
if (GetKeyState(VK_MENU) & 0x80)
flags |= Event::EF_ALT_DOWN;