summaryrefslogtreecommitdiffstats
path: root/remoting/client/x11_input_handler.h
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-07 21:42:43 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-07 21:42:43 +0000
commitc073282650b32fc28aa93124d11c1fee579d79da (patch)
treeef2bc69ff0eeaba57f45f89194df29783f9af185 /remoting/client/x11_input_handler.h
parent4f62f65655d12df9d111f7dc2ed6fbcadf252d7f (diff)
downloadchromium_src-c073282650b32fc28aa93124d11c1fee579d79da.zip
chromium_src-c073282650b32fc28aa93124d11c1fee579d79da.tar.gz
chromium_src-c073282650b32fc28aa93124d11c1fee579d79da.tar.bz2
Add mouse/keyboard event support to Chromoting client (Pepper and X11).
BUG=50247 TEST=none Review URL: http://codereview.chromium.org/3341005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58761 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/x11_input_handler.h')
-rw-r--r--remoting/client/x11_input_handler.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/client/x11_input_handler.h b/remoting/client/x11_input_handler.h
index eedaf54..e84e4b9 100644
--- a/remoting/client/x11_input_handler.h
+++ b/remoting/client/x11_input_handler.h
@@ -27,6 +27,10 @@ class X11InputHandler : public InputHandler {
void ScheduleX11EventHandler();
+ // This is really an XEvent, but if we include Xlib.h in this file, it will
+ // cause conflicts with other headers. See note at top of
+ // x11_input_handler.cc.
+ void HandleKeyEvent(void* event);
void HandleMouseMoveEvent(int x, int y);
void HandleMouseButtonEvent(bool button_down, int xbutton_id);