diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 01:55:52 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-26 01:55:52 +0000 |
commit | b67fb930ca28a39b12cb40c769321df52cd0ddae (patch) | |
tree | ae6122a7f0c3e5e10cd1bb58b73e0375ff9c833e /remoting/proto | |
parent | 79e1409f81bf5ce29f69acfaae15f0ff057cb321 (diff) | |
download | chromium_src-b67fb930ca28a39b12cb40c769321df52cd0ddae.zip chromium_src-b67fb930ca28a39b12cb40c769321df52cd0ddae.tar.gz chromium_src-b67fb930ca28a39b12cb40c769321df52cd0ddae.tar.bz2 |
Chromoting: Undo any mouse-downs that haven't been mouse-upped.
BUG=97466
TEST=manual
Review URL: http://codereview.chromium.org/7973016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102687 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/proto')
-rw-r--r-- | remoting/proto/event.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/proto/event.proto b/remoting/proto/event.proto index 945d0b0..2098e70 100644 --- a/remoting/proto/event.proto +++ b/remoting/proto/event.proto @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -26,6 +26,7 @@ message MouseEvent { BUTTON_LEFT = 1; BUTTON_MIDDLE = 2; BUTTON_RIGHT = 3; + BUTTON_MAX = 4; } // Mouse position information. |