diff options
author | wez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 00:13:43 +0000 |
---|---|---|
committer | wez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-27 00:13:43 +0000 |
commit | f2b9cf39716c8f7955fae1d119750703908dc540 (patch) | |
tree | e36467b815785b12608a0bf17a2eaa14bed3a844 /remoting/host/client_session.h | |
parent | 66eeb5290b2dc7a1f95bcb55ee97457c20bf3d88 (diff) | |
download | chromium_src-f2b9cf39716c8f7955fae1d119750703908dc540.zip chromium_src-f2b9cf39716c8f7955fae1d119750703908dc540.tar.gz chromium_src-f2b9cf39716c8f7955fae1d119750703908dc540.tar.bz2 |
Add ClientDimensions message to control channel.
This allows the client to indicate the tab dimensions so the host can resize to match.
BUG=110212
Review URL: http://codereview.chromium.org/10223019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134180 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/client_session.h')
-rw-r--r-- | remoting/host/client_session.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h index 41068fa..a4f2367 100644 --- a/remoting/host/client_session.h +++ b/remoting/host/client_session.h @@ -76,6 +76,10 @@ class ClientSession : public protocol::HostEventStub, virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE; virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE; + // protocol::HostStub interface. + virtual void NotifyClientDimensions( + const protocol::ClientDimensions& dimensions) OVERRIDE; + // protocol::ConnectionToClient::EventHandler interface. virtual void OnConnectionAuthenticated( protocol::ConnectionToClient* connection) OVERRIDE; |