summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-15 01:06:39 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-15 01:06:39 +0000
commitb3edf6669c53e562e1d151def7d22fd609e57ab7 (patch)
treeca8df59cfda023e7eef102d1ef761b901de6d5e1 /remoting
parentaffa2909539f7d41263611134d9d741ab92cec32 (diff)
downloadchromium_src-b3edf6669c53e562e1d151def7d22fd609e57ab7.zip
chromium_src-b3edf6669c53e562e1d151def7d22fd609e57ab7.tar.gz
chromium_src-b3edf6669c53e562e1d151def7d22fd609e57ab7.tar.bz2
Restore mouse clamping in ClientSession.
This corrects a typo in an earlier ClientSession input pipeline cleanup CL. Review URL: http://codereview.chromium.org/10082042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132351 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/host/client_session.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
index b850172..6115ea9 100644
--- a/remoting/host/client_session.cc
+++ b/remoting/host/client_session.cc
@@ -34,7 +34,7 @@ ClientSession::ClientSession(
// later and set them only when connection is authenticated.
connection_->set_clipboard_stub(this);
connection_->set_host_stub(this);
- connection_->set_input_stub(&auth_input_filter_);
+ connection_->set_input_stub(this);
}
ClientSession::~ClientSession() {