Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Issue 193813003: ozone: evdev: Add libgestures bindings for touchpad & mouse support (Closed)

Created:
6 years, 9 months ago by spang
Modified:
6 years, 8 months ago
Reviewers:
rjkroege, adlr
CC:
chromium-reviews, kalyank, ozone-reviews_chromium.org, sadrul
Visibility:
Public.

Description

ozone: evdev: Add libgestures bindings for touchpad & mouse support The gestures library converts kernel input events into gestures. This currently happens inside X11 in the xf86-input-cmt driver, but without X11 we have to do use it from EventFactoryEvdev BUG=351168 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=264273

Patch Set 1 #

Total comments: 6

Patch Set 2 : add class comments #

Total comments: 3

Patch Set 3 : rebase #

Total comments: 2

Patch Set 4 : moved 1 space by 1 character #

Unified diffs Side-by-side diffs Delta from patch set Stats (+888 lines, -50 lines) Patch
M build/common.gypi View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M build/linux/system.gyp View 1 2 1 chunk +38 lines, -0 lines 0 comments Download
M ui/events/events.gyp View 1 2 2 chunks +21 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_converter_evdev.h View 1 2 2 chunks +4 lines, -5 lines 0 comments Download
M ui/events/ozone/evdev/event_converter_evdev.cc View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_device_info.h View 1 chunk +10 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_device_info.cc View 1 chunk +37 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_factory_evdev.h View 1 2 2 chunks +5 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_factory_evdev.cc View 1 2 3 7 chunks +60 lines, -29 lines 0 comments Download
M ui/events/ozone/evdev/event_modifiers_evdev.h View 1 chunk +3 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/event_modifiers_evdev.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/key_event_converter_evdev.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M ui/events/ozone/evdev/key_event_converter_evdev.cc View 1 2 1 chunk +9 lines, -4 lines 0 comments Download
M ui/events/ozone/evdev/key_event_converter_evdev_unittest.cc View 1 2 1 chunk +4 lines, -1 line 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.h View 1 2 1 chunk +78 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc View 1 2 1 chunk +107 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h View 1 2 1 chunk +82 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc View 1 2 1 chunk +266 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_logging.h View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_logging.cc View 1 2 1 chunk +32 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_timer_provider.h View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
A ui/events/ozone/evdev/libgestures_glue/gesture_timer_provider.cc View 1 2 1 chunk +72 lines, -0 lines 0 comments Download
M ui/events/ozone/evdev/touch_event_converter_evdev.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M ui/events/ozone/evdev/touch_event_converter_evdev.cc View 1 2 1 chunk +7 lines, -4 lines 0 comments Download
M ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc View 1 2 3 chunks +7 lines, -5 lines 0 comments Download

Messages

Total messages: 21 (0 generated)
spang
6 years, 9 months ago (2014-03-11 01:56:48 UTC) #1
spang
6 years, 9 months ago (2014-03-11 01:56:49 UTC) #2
rjkroege
this (and your other CLs) probably needs some tests? https://codereview.chromium.org/193813003/diff/1/ui/events/ozone/evdev/event_factory_evdev.cc File ui/events/ozone/evdev/event_factory_evdev.cc (right): https://codereview.chromium.org/193813003/diff/1/ui/events/ozone/evdev/event_factory_evdev.cc#newcode23 ui/events/ozone/evdev/event_factory_evdev.cc:23: ...
6 years, 9 months ago (2014-03-11 12:58:47 UTC) #3
sadrul
Can we call this touchpad_gestures/ to avoid confusion with ui/events/gestures/?
6 years, 9 months ago (2014-03-11 16:13:09 UTC) #4
spang
On 2014/03/11 16:13:09, sadrul wrote: > Can we call this touchpad_gestures/ to avoid confusion with ...
6 years, 9 months ago (2014-03-11 16:31:30 UTC) #5
spang
https://codereview.chromium.org/193813003/diff/1/ui/events/ozone/evdev/event_factory_evdev.cc File ui/events/ozone/evdev/event_factory_evdev.cc (right): https://codereview.chromium.org/193813003/diff/1/ui/events/ozone/evdev/event_factory_evdev.cc#newcode23 ui/events/ozone/evdev/event_factory_evdev.cc:23: #if defined(USE_EVDEV_GESTURES) On 2014/03/11 12:58:47, rjkroege wrote: > do ...
6 years, 9 months ago (2014-03-11 16:38:11 UTC) #6
spang
On 2014/03/11 16:31:30, spang wrote: > On 2014/03/11 16:13:09, sadrul wrote: > > Can we ...
6 years, 9 months ago (2014-03-11 16:42:48 UTC) #7
sadrul
> libgestures_glue sg https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp File ui/events/events.gyp (right): https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp#newcode170 ui/events/events.gyp:170: ['use_ozone_evdev==1 and use_evdev_gestures==1', { Do we ...
6 years, 9 months ago (2014-03-11 16:48:11 UTC) #8
spang
https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp File ui/events/events.gyp (right): https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp#newcode170 ui/events/events.gyp:170: ['use_ozone_evdev==1 and use_evdev_gestures==1', { On 2014/03/11 16:48:12, sadrul wrote: ...
6 years, 9 months ago (2014-03-11 16:58:49 UTC) #9
sadrul
https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp File ui/events/events.gyp (right): https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp#newcode170 ui/events/events.gyp:170: ['use_ozone_evdev==1 and use_evdev_gestures==1', { On 2014/03/11 16:58:50, spang wrote: ...
6 years, 9 months ago (2014-03-11 18:13:40 UTC) #10
spang
On 2014/03/11 18:13:40, sadrul wrote: > https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp > File ui/events/events.gyp (right): > > https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp#newcode170 > ...
6 years, 9 months ago (2014-03-11 19:24:21 UTC) #11
spang
On 2014/03/11 19:24:21, spang wrote: > On 2014/03/11 18:13:40, sadrul wrote: > > https://codereview.chromium.org/193813003/diff/20001/ui/events/events.gyp > ...
6 years, 9 months ago (2014-03-12 21:21:10 UTC) #12
rjkroege
On 2014/03/12 21:21:10, spang wrote: > On 2014/03/11 19:24:21, spang wrote: > > On 2014/03/11 ...
6 years, 9 months ago (2014-03-13 21:17:26 UTC) #13
spang
On 2014/03/13 21:17:26, rjkroege wrote: > On 2014/03/12 21:21:10, spang wrote: > > On 2014/03/11 ...
6 years, 9 months ago (2014-03-14 20:08:44 UTC) #14
spang
On 2014/03/14 20:08:44, spang wrote: > On 2014/03/13 21:17:26, rjkroege wrote: > > On 2014/03/12 ...
6 years, 9 months ago (2014-03-14 20:21:09 UTC) #15
spang
On 2014/03/14 20:21:09, spang wrote: > On 2014/03/14 20:08:44, spang wrote: > > On 2014/03/13 ...
6 years, 8 months ago (2014-04-15 23:39:39 UTC) #16
rjkroege
lgtm https://codereview.chromium.org/193813003/diff/60001/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc File ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc (right): https://codereview.chromium.org/193813003/diff/60001/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc#newcode30 ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc:30: scoped_ptr<Delegate> delegate) is this line too long?
6 years, 8 months ago (2014-04-16 14:46:06 UTC) #17
spang
https://codereview.chromium.org/193813003/diff/60001/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc File ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc (right): https://codereview.chromium.org/193813003/diff/60001/ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc#newcode30 ui/events/ozone/evdev/libgestures_glue/event_reader_libevdev_cros.cc:30: scoped_ptr<Delegate> delegate) On 2014/04/16 14:46:06, rjkroege wrote: > is ...
6 years, 8 months ago (2014-04-16 15:46:37 UTC) #18
spang
The CQ bit was checked by spang@chromium.org
6 years, 8 months ago (2014-04-16 15:46:44 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/spang@chromium.org/193813003/80001
6 years, 8 months ago (2014-04-16 15:47:32 UTC) #20
commit-bot: I haz the power
6 years, 8 months ago (2014-04-16 19:04:32 UTC) #21
Message was sent while issue was closed.
Change committed as 264273

Powered by Google App Engine
This is Rietveld 408576698