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

Issue 21236002: Chromoting Android app mouse/keyboard bugfixes and enhancements (Closed)

Created:
7 years, 4 months ago by solb
Modified:
7 years, 4 months ago
Reviewers:
Sergey Ulanov, garykac
CC:
chromium-reviews, jamiewalch+watch_chromium.org, dcaiafa+watch_chromium.org, hclam+watch_chromium.org, wez+watch_chromium.org, amit, sanjeevr, garykac+watch_chromium.org, lambroslambrou+watch_chromium.org, rmsousa+watch_chromium.org, weitaosu+watch_chromium.org, alexeypa+watch_chromium.org, sergeyu+watch_chromium.org
Visibility:
Public.

Description

Chromoting Android app mouse/keyboard bugfixes and enhancements - Enable multitouch panning on devices whose gesture detectors filture out such events by default - Fix problem where the transformation matrix was applied twice when tapping to single click - Hardcode the expansions for the @#*+ symbols for now - Fix issue where hitting the keypad enter key could close the software keyboard without warning Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=214769

Patch Set 1 #

Total comments: 6

Patch Set 2 : Clarify comment on dispatchKeyEvent #

Patch Set 3 : Move non-negative and in-bounds input checks to C++, fix style nits #

Total comments: 8

Patch Set 4 : Rename camelcase variables and uppercase constants #

Patch Set 5 : Fix bug where pressing the numpad enter key could have closed the keyboard #

Total comments: 2

Patch Set 6 : One last (TODO) comment change #

Unified diffs Side-by-side diffs Delta from patch set Stats (+82 lines, -47 lines) Patch
M remoting/android/java/AndroidManifest.xml View 1 chunk +2 lines, -2 lines 0 comments Download
M remoting/android/java/src/org/chromium/chromoting/Desktop.java View 1 2 3 4 1 chunk +32 lines, -5 lines 0 comments Download
M remoting/android/java/src/org/chromium/chromoting/DesktopView.java View 1 2 4 chunks +5 lines, -6 lines 0 comments Download
M remoting/android/java/src/org/chromium/chromoting/jni/JniInterface.java View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M remoting/client/jni/android_keymap.h View 1 2 3 4 5 1 chunk +7 lines, -7 lines 0 comments Download
M remoting/client/jni/android_keymap.cc View 1 2 3 2 chunks +5 lines, -1 line 0 comments Download
M remoting/client/jni/chromoting_jni_instance.h View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M remoting/client/jni/chromoting_jni_instance.cc View 1 2 3 5 chunks +19 lines, -18 lines 0 comments Download
M remoting/client/jni/chromoting_jni_runtime.cc View 1 2 3 3 chunks +4 lines, -3 lines 0 comments Download
M remoting/client/jni/jni_interface.cc View 1 2 1 chunk +3 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
solb
This is to apply on top of https://codereview.chromium.org/21120005, which also needs review.
7 years, 4 months ago (2013-07-30 11:32:34 UTC) #1
garykac
https://codereview.chromium.org/21236002/diff/1/remoting/android/java/src/org/chromium/chromoting/Desktop.java File remoting/android/java/src/org/chromium/chromoting/Desktop.java (right): https://codereview.chromium.org/21236002/diff/1/remoting/android/java/src/org/chromium/chromoting/Desktop.java#newcode78 remoting/android/java/src/org/chromium/chromoting/Desktop.java:78: JniInterface.keyboardAction(KeyEvent.KEYCODE_2, depressed); Don't you need to release the SHIFT ...
7 years, 4 months ago (2013-07-30 17:50:05 UTC) #2
solb
https://codereview.chromium.org/21236002/diff/1/remoting/android/java/src/org/chromium/chromoting/Desktop.java File remoting/android/java/src/org/chromium/chromoting/Desktop.java (right): https://codereview.chromium.org/21236002/diff/1/remoting/android/java/src/org/chromium/chromoting/Desktop.java#newcode78 remoting/android/java/src/org/chromium/chromoting/Desktop.java:78: JniInterface.keyboardAction(KeyEvent.KEYCODE_2, depressed); On 2013/07/30 17:50:05, garykac wrote: > Don't ...
7 years, 4 months ago (2013-07-30 18:28:54 UTC) #3
garykac
lgtm
7 years, 4 months ago (2013-07-30 18:48:59 UTC) #4
Sergey Ulanov
https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.h File remoting/client/jni/android_keymap.h (right): https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.h#newcode13 remoting/client/jni/android_keymap.h:13: // TODO(solb): crbug.com/265945 Please keep the reference to the ...
7 years, 4 months ago (2013-07-30 21:45:59 UTC) #5
Sergey Ulanov
more style nits. https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.cc File remoting/client/jni/android_keymap.cc (right): https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.cc#newcode207 remoting/client/jni/android_keymap.cc:207: DCHECK(android < sizeof usb_keycodes / sizeof ...
7 years, 4 months ago (2013-07-30 21:55:17 UTC) #6
solb
https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.cc File remoting/client/jni/android_keymap.cc (right): https://codereview.chromium.org/21236002/diff/12001/remoting/client/jni/android_keymap.cc#newcode207 remoting/client/jni/android_keymap.cc:207: DCHECK(android < sizeof usb_keycodes / sizeof (uint32)); On 2013/07/30 ...
7 years, 4 months ago (2013-07-30 23:03:37 UTC) #7
Sergey Ulanov
LGTM. thanks! https://codereview.chromium.org/21236002/diff/32001/remoting/client/jni/android_keymap.h File remoting/client/jni/android_keymap.h (right): https://codereview.chromium.org/21236002/diff/32001/remoting/client/jni/android_keymap.h#newcode14 remoting/client/jni/android_keymap.h:14: // crbug.com/265945 I meant that it should ...
7 years, 4 months ago (2013-07-31 01:54:16 UTC) #8
solb
https://codereview.chromium.org/21236002/diff/32001/remoting/client/jni/android_keymap.h File remoting/client/jni/android_keymap.h (right): https://codereview.chromium.org/21236002/diff/32001/remoting/client/jni/android_keymap.h#newcode14 remoting/client/jni/android_keymap.h:14: // crbug.com/265945 On 2013/07/31 01:54:16, Sergey Ulanov wrote: > ...
7 years, 4 months ago (2013-07-31 03:22:52 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/solb@chromium.org/21236002/40001
7 years, 4 months ago (2013-07-31 15:17:04 UTC) #10
commit-bot: I haz the power
7 years, 4 months ago (2013-07-31 17:39:17 UTC) #11
Message was sent while issue was closed.
Change committed as 214769

Powered by Google App Engine
This is Rietveld 408576698