diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 23:03:19 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 23:03:19 +0000 |
commit | 6730b450fb21fbb7560091b1943ed3be1c757852 (patch) | |
tree | c8c25191d6f5c6adc1a616d8bafb85d7c6094cda /remoting/client/host_connection.h | |
parent | 234cd85cf6d9d4dd868c2a21bffe2ec575bb6ffc (diff) | |
download | chromium_src-6730b450fb21fbb7560091b1943ed3be1c757852.zip chromium_src-6730b450fb21fbb7560091b1943ed3be1c757852.tar.gz chromium_src-6730b450fb21fbb7560091b1943ed3be1c757852.tar.bz2 |
Add mouse event support to Chromoting client (Pepper and X11).
BUG=none
TEST=remoting unittests
Review URL: http://codereview.chromium.org/3175028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57598 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/host_connection.h')
-rw-r--r-- | remoting/client/host_connection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/remoting/client/host_connection.h b/remoting/client/host_connection.h index 8438fb9..7af8de3 100644 --- a/remoting/client/host_connection.h +++ b/remoting/client/host_connection.h @@ -43,6 +43,9 @@ class HostConnection { HostEventCallback* event_callback) = 0; virtual void Disconnect() = 0; + // Send an input event to the host. + virtual void SendEvent(const ChromotingClientMessage& msg) = 0; + protected: HostConnection() {} |