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

Issue 420073003: Two Finger Tap (Closed)

Created:
6 years, 4 months ago by lisayin
Modified:
6 years, 4 months ago
CC:
chromium-reviews, kalyank, stevenjb+watch_chromium.org, sadrul, oshima+watch_chromium.org, ben+ash_chromium.org, evy
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Two Finger Tap If spoken feedback is reading and a user performs a two finger tap anywhere on the screen, it will silence spoken feedback. BUG=399380 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289035

Patch Set 1 #

Total comments: 4

Patch Set 2 : Addressed Comments and Added Tests #

Patch Set 3 : Improved descriptions #

Total comments: 6

Patch Set 4 : Removed LOG(ERROR) line #

Patch Set 5 : Rebase off master #

Total comments: 7

Patch Set 6 : Addressed Comments #

Patch Set 7 : Added Slop Checking #

Patch Set 8 : Fixed determining swipe gestures #

Total comments: 2

Patch Set 9 : Added more tests #

Total comments: 31

Patch Set 10 : Addressed Comments #

Total comments: 2

Patch Set 11 : Nit Fix #

Patch Set 12 : Rebase off Master #

Unified diffs Side-by-side diffs Delta from patch set Stats (+232 lines, -20 lines) Patch
M ash/ash_touch_exploration_manager_chromeos.h View 1 chunk +1 line, -0 lines 0 comments Download
M ash/ash_touch_exploration_manager_chromeos.cc View 1 2 3 4 5 6 7 8 9 1 chunk +8 lines, -0 lines 0 comments Download
M ui/chromeos/touch_exploration_controller.h View 1 2 3 4 5 6 7 8 9 10 11 7 chunks +22 lines, -5 lines 0 comments Download
M ui/chromeos/touch_exploration_controller.cc View 1 2 3 4 5 6 7 8 9 7 chunks +67 lines, -15 lines 0 comments Download
M ui/chromeos/touch_exploration_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 4 chunks +134 lines, -0 lines 0 comments Download

Messages

Total messages: 24 (0 generated)
lisayin
https://codereview.chromium.org/420073003/diff/1/ash/ash_touch_exploration_manager_chromeos.cc File ash/ash_touch_exploration_manager_chromeos.cc (right): https://codereview.chromium.org/420073003/diff/1/ash/ash_touch_exploration_manager_chromeos.cc#newcode62 ash/ash_touch_exploration_manager_chromeos.cc:62: void AshTouchExplorationManager::SilenceSpokenFeedback() { This is the code that accelerator_controller ...
6 years, 4 months ago (2014-07-31 16:33:50 UTC) #1
aboxhall
So I take it the ctrl key events are a stop gap until you figure ...
6 years, 4 months ago (2014-07-31 16:49:26 UTC) #2
lisayin
On 2014/07/31 16:49:26, aboxhall wrote: > So I take it the ctrl key events are ...
6 years, 4 months ago (2014-07-31 18:14:23 UTC) #3
lisayin
https://codereview.chromium.org/420073003/diff/1/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/1/ui/chromeos/touch_exploration_controller.cc#newcode576 ui/chromeos/touch_exploration_controller.cc:576: if (type == ui::ET_TOUCH_RELEASED || type == ui::ET_TOUCH_MOVED) { ...
6 years, 4 months ago (2014-07-31 18:14:33 UTC) #4
dmazzoni
https://codereview.chromium.org/420073003/diff/40001/ash/accelerators/accelerator_controller.cc File ash/accelerators/accelerator_controller.cc (right): https://codereview.chromium.org/420073003/diff/40001/ash/accelerators/accelerator_controller.cc#newcode429 ash/accelerators/accelerator_controller.cc:429: LOG(ERROR) << "In HandleSilenceSpokenFeedback"; Delete this? https://codereview.chromium.org/420073003/diff/40001/ash/ash_touch_exploration_manager_chromeos.h File ash/ash_touch_exploration_manager_chromeos.h ...
6 years, 4 months ago (2014-07-31 20:44:43 UTC) #5
lisayin
https://codereview.chromium.org/420073003/diff/40001/ash/ash_touch_exploration_manager_chromeos.h File ash/ash_touch_exploration_manager_chromeos.h (right): https://codereview.chromium.org/420073003/diff/40001/ash/ash_touch_exploration_manager_chromeos.h#newcode38 ash/ash_touch_exploration_manager_chromeos.h:38: virtual void SilenceSpokenFeedback() OVERRIDE; On 2014/07/31 20:44:43, dmazzoni wrote: ...
6 years, 4 months ago (2014-07-31 21:43:27 UTC) #6
lisayin
https://codereview.chromium.org/420073003/diff/40001/ash/accelerators/accelerator_controller.cc File ash/accelerators/accelerator_controller.cc (right): https://codereview.chromium.org/420073003/diff/40001/ash/accelerators/accelerator_controller.cc#newcode429 ash/accelerators/accelerator_controller.cc:429: LOG(ERROR) << "In HandleSilenceSpokenFeedback"; On 2014/07/31 20:44:43, dmazzoni_ooo_until_aug_11 wrote: ...
6 years, 4 months ago (2014-08-06 17:23:59 UTC) #7
aboxhall
https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc#newcode180 ui/chromeos/touch_exploration_controller.cc:180: return EVENT_REWRITE_DISCARD; Does this have any implications for multi-finger ...
6 years, 4 months ago (2014-08-06 18:30:01 UTC) #8
evy
https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc#newcode567 ui/chromeos/touch_exploration_controller.cc:567: if (type == ui::ET_TOUCH_PRESSED) { On 2014/08/06 18:30:00, aboxhall ...
6 years, 4 months ago (2014-08-06 18:33:03 UTC) #9
lisayin
https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/80001/ui/chromeos/touch_exploration_controller.cc#newcode180 ui/chromeos/touch_exploration_controller.cc:180: return EVENT_REWRITE_DISCARD; On 2014/08/06 18:30:00, aboxhall wrote: > Does ...
6 years, 4 months ago (2014-08-06 20:41:35 UTC) #10
aboxhall
lgtm
6 years, 4 months ago (2014-08-07 19:01:10 UTC) #11
aboxhall
https://codereview.chromium.org/420073003/diff/140001/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/140001/ui/chromeos/touch_exploration_controller.cc#newcode580 ui/chromeos/touch_exploration_controller.cc:580: // movement a swipe. Does this logic need extra ...
6 years, 4 months ago (2014-08-07 22:45:20 UTC) #12
lisayin
https://codereview.chromium.org/420073003/diff/140001/ui/chromeos/touch_exploration_controller.cc File ui/chromeos/touch_exploration_controller.cc (right): https://codereview.chromium.org/420073003/diff/140001/ui/chromeos/touch_exploration_controller.cc#newcode580 ui/chromeos/touch_exploration_controller.cc:580: // movement a swipe. On 2014/08/07 22:45:19, aboxhall wrote: ...
6 years, 4 months ago (2014-08-08 02:12:24 UTC) #13
lisayin
+jamescook PTAL I added methods in the ash files so that in the future, we ...
6 years, 4 months ago (2014-08-08 17:08:13 UTC) #14
James Cook
Also, please manually wrap the commit description to 80 columns -- it makes the codereview ...
6 years, 4 months ago (2014-08-08 18:06:31 UTC) #15
lisayin
https://codereview.chromium.org/420073003/diff/160001/ash/ash_touch_exploration_manager_chromeos.cc File ash/ash_touch_exploration_manager_chromeos.cc (right): https://codereview.chromium.org/420073003/diff/160001/ash/ash_touch_exploration_manager_chromeos.cc#newcode7 ash/ash_touch_exploration_manager_chromeos.cc:7: #include "ash/accelerators/accelerator_controller.h" On 2014/08/08 18:06:30, James Cook wrote: > ...
6 years, 4 months ago (2014-08-08 19:06:16 UTC) #16
James Cook
LGTM with nit https://codereview.chromium.org/420073003/diff/180001/ui/chromeos/touch_exploration_controller.h File ui/chromeos/touch_exploration_controller.h (right): https://codereview.chromium.org/420073003/diff/180001/ui/chromeos/touch_exploration_controller.h#newcode371 ui/chromeos/touch_exploration_controller.h:371: // Map of touch ids to ...
6 years, 4 months ago (2014-08-08 20:07:24 UTC) #17
lisayin
https://codereview.chromium.org/420073003/diff/180001/ui/chromeos/touch_exploration_controller.h File ui/chromeos/touch_exploration_controller.h (right): https://codereview.chromium.org/420073003/diff/180001/ui/chromeos/touch_exploration_controller.h#newcode371 ui/chromeos/touch_exploration_controller.h:371: // Map of touch ids to where its initial ...
6 years, 4 months ago (2014-08-08 20:14:05 UTC) #18
dmazzoni
lgtm
6 years, 4 months ago (2014-08-11 08:29:21 UTC) #19
lisayin
The CQ bit was checked by lisayin@chromium.org
6 years, 4 months ago (2014-08-11 16:30:04 UTC) #20
lisayin
The CQ bit was unchecked by lisayin@chromium.org
6 years, 4 months ago (2014-08-11 16:30:30 UTC) #21
lisayin
The CQ bit was checked by lisayin@chromium.org
6 years, 4 months ago (2014-08-12 18:29:53 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/lisayin@chromium.org/420073003/220001
6 years, 4 months ago (2014-08-12 18:32:21 UTC) #23
commit-bot: I haz the power
6 years, 4 months ago (2014-08-12 18:38:29 UTC) #24
Message was sent while issue was closed.
Change committed as 289035

Powered by Google App Engine
This is Rietveld 408576698