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

Issue 2016073004: Show a visual indicator for the progress of auto-click. (Closed)

Created:
4 years, 6 months ago by sammiequon
Modified:
4 years, 5 months ago
CC:
chromium-reviews, dbeam+watch-options_chromium.org, kalyank, michaelpg+watch-options_chromium.org, sadrul, arv+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@lkgr
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Show a visual indicator for the progress of auto-click. BUG=610476 CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:closure_compilation Committed: https://crrev.com/820646ff0c3aa9fb6ea4d8ff727e9f5b02b1ca2a Cr-Commit-Position: refs/heads/master@{#401913}

Patch Set 1 #

Total comments: 10

Patch Set 2 : Moved ring rendering code to chrome/browser/chromeos/ui #

Total comments: 23

Patch Set 3 : Fixed errors from patch set 2. #

Total comments: 20

Patch Set 4 : Used a timedelta in autoclick controller instead of int. #

Total comments: 18

Patch Set 5 : Fixed Patch Set 4 errors. #

Total comments: 22

Patch Set 6 : Fixed errors from patch set 5. #

Total comments: 16

Patch Set 7 : Rebase. #

Patch Set 8 : Patch set 6 fixes. #

Patch Set 9 : Rebase. #

Patch Set 10 : Updated material design equivalent. #

Patch Set 11 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+524 lines, -39 lines) Patch
M ash/autoclick/autoclick_controller.h View 1 2 3 4 5 6 7 4 chunks +33 lines, -2 lines 0 comments Download
M ash/autoclick/autoclick_controller.cc View 1 2 3 4 5 7 chunks +54 lines, -15 lines 0 comments Download
M ash/autoclick/autoclick_unittest.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/app/chromeos_strings.grdp View 1 2 3 4 5 6 7 8 9 10 1 chunk +5 lines, -5 lines 0 comments Download
M chrome/browser/chromeos/accessibility/accessibility_manager.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/accessibility/accessibility_manager.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +5 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/preferences.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -1 line 0 comments Download
A chrome/browser/chromeos/ui/autoclick_ring_handler.h View 1 2 3 4 5 6 7 1 chunk +73 lines, -0 lines 0 comments Download
A chrome/browser/chromeos/ui/autoclick_ring_handler.cc View 1 2 3 4 5 6 7 1 chunk +331 lines, -0 lines 0 comments Download
M chrome/browser/resources/options/browser_options.html View 1 2 3 4 5 6 7 8 9 10 1 chunk +8 lines, -5 lines 0 comments Download
M chrome/browser/resources/settings/a11y_page/a11y_page.html View 1 2 3 4 5 6 7 8 9 10 1 chunk +5 lines, -5 lines 0 comments Download
M chrome/browser/ui/ash/ash_init.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_browser_chromeos.gypi View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 49 (21 generated)
dmazzoni
Ideally I'd like to share some of this code with the files in this directory: ...
4 years, 6 months ago (2016-05-31 18:31:09 UTC) #4
jdufault
https://codereview.chromium.org/2016073004/diff/1/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/1/ash/autoclick/autoclick_controller.cc#newcode93 ash/autoclick/autoclick_controller.cc:93: autoclick_ring_display_.reset(new LongPressAutoclickRingHandler); Use trailing parens with constructors: new LongPressAutoclickRingHandler() ...
4 years, 6 months ago (2016-05-31 19:06:15 UTC) #5
sammiequon
@jdufault - fixed suggestions from patch 1. @dmazzoni - Rendering code is now located in ...
4 years, 6 months ago (2016-06-03 21:34:31 UTC) #8
dmazzoni
lgtm
4 years, 6 months ago (2016-06-03 21:37:56 UTC) #9
jdufault
https://codereview.chromium.org/2016073004/diff/40001/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/40001/ash/autoclick/autoclick_controller.cc#newcode53 ash/autoclick/autoclick_controller.cc:53: void SetAutoclickgestureDelegate(std::unique_ptr<AutoclickgestureDelegate> This doesn't look like normal formatting. Did ...
4 years, 6 months ago (2016-06-03 22:02:45 UTC) #10
jdufault
Please also update the title of the CL to match the first line of the ...
4 years, 6 months ago (2016-06-03 22:03:05 UTC) #11
sammiequon
jdufault - updated files to your suggestions https://codereview.chromium.org/2016073004/diff/40001/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/40001/ash/autoclick/autoclick_controller.cc#newcode53 ash/autoclick/autoclick_controller.cc:53: void SetAutoclickgestureDelegate(std::unique_ptr<AutoclickgestureDelegate> ...
4 years, 6 months ago (2016-06-07 18:06:16 UTC) #12
jdufault
It looks like the title got truncated. The title and the first line of the ...
4 years, 6 months ago (2016-06-08 17:50:20 UTC) #13
sammiequon
https://codereview.chromium.org/2016073004/diff/60001/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/60001/ash/autoclick/autoclick_controller.cc#newcode52 ash/autoclick/autoclick_controller.cc:52: // AutoclickController overrides. On 2016/06/08 17:50:19, jdufault wrote: > ...
4 years, 6 months ago (2016-06-09 04:03:47 UTC) #14
jdufault
https://codereview.chromium.org/2016073004/diff/80001/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/80001/ash/autoclick/autoclick_controller.cc#newcode90 ash/autoclick/autoclick_controller.cc:90: static_cast<int64_t>(kDefaultAutoclickDelayMs))), Make kDefaultAutoclickDelayMs a base::TimeDelta value and then just ...
4 years, 6 months ago (2016-06-09 16:41:26 UTC) #15
sammiequon
https://codereview.chromium.org/2016073004/diff/80001/ash/autoclick/autoclick_controller.cc File ash/autoclick/autoclick_controller.cc (right): https://codereview.chromium.org/2016073004/diff/80001/ash/autoclick/autoclick_controller.cc#newcode90 ash/autoclick/autoclick_controller.cc:90: static_cast<int64_t>(kDefaultAutoclickDelayMs))), On 2016/06/09 16:41:26, jdufault wrote: > Make kDefaultAutoclickDelayMs ...
4 years, 6 months ago (2016-06-10 19:30:27 UTC) #17
oshima
https://codereview.chromium.org/2016073004/diff/100001/ash/autoclick/autoclick_controller.h File ash/autoclick/autoclick_controller.h (right): https://codereview.chromium.org/2016073004/diff/100001/ash/autoclick/autoclick_controller.h#newcode63 ash/autoclick/autoclick_controller.h:63: static const base::TimeDelta kDefaultAutoclickDelay; static member needs to be ...
4 years, 6 months ago (2016-06-13 21:57:30 UTC) #20
sammiequon
https://codereview.chromium.org/2016073004/diff/100001/ash/autoclick/autoclick_controller.h File ash/autoclick/autoclick_controller.h (right): https://codereview.chromium.org/2016073004/diff/100001/ash/autoclick/autoclick_controller.h#newcode63 ash/autoclick/autoclick_controller.h:63: static const base::TimeDelta kDefaultAutoclickDelay; On 2016/06/13 21:57:29, oshima wrote: ...
4 years, 6 months ago (2016-06-15 15:40:53 UTC) #22
oshima
please address comments below, then lgtm https://codereview.chromium.org/2016073004/diff/140001/ash/autoclick/autoclick_controller.h File ash/autoclick/autoclick_controller.h (right): https://codereview.chromium.org/2016073004/diff/140001/ash/autoclick/autoclick_controller.h#newcode27 ash/autoclick/autoclick_controller.h:27: // Called when ...
4 years, 6 months ago (2016-06-15 21:26:28 UTC) #23
sammiequon
@dbeam - please take a look - browser_options.html https://codereview.chromium.org/2016073004/diff/140001/ash/autoclick/autoclick_controller.h File ash/autoclick/autoclick_controller.h (right): https://codereview.chromium.org/2016073004/diff/140001/ash/autoclick/autoclick_controller.h#newcode27 ash/autoclick/autoclick_controller.h:27: // ...
4 years, 6 months ago (2016-06-15 23:19:59 UTC) #25
Dan Beam
can you update the Material Design equivalent? i.e. chrome/browser/resources/settings
4 years, 6 months ago (2016-06-18 01:45:48 UTC) #26
sammiequon
4 years, 6 months ago (2016-06-20 19:04:48 UTC) #27
sammiequon
4 years, 6 months ago (2016-06-20 19:04:49 UTC) #28
Dan Beam
lgtm
4 years, 6 months ago (2016-06-21 05:26:22 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2016073004/220001
4 years, 5 months ago (2016-06-24 16:24:03 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/26289) ios-device-gn on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 5 months ago (2016-06-24 16:26:54 UTC) #34
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2016073004/220001
4 years, 5 months ago (2016-06-24 17:28:53 UTC) #36
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_arm64_dbg_recipe on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_arm64_dbg_recipe/builds/86757) android_clang_dbg_recipe on ...
4 years, 5 months ago (2016-06-24 17:33:15 UTC) #38
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2016073004/240001
4 years, 5 months ago (2016-06-24 17:50:18 UTC) #40
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 5 months ago (2016-06-24 18:39:07 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2016073004/240001
4 years, 5 months ago (2016-06-24 18:40:52 UTC) #45
commit-bot: I haz the power
Committed patchset #11 (id:240001)
4 years, 5 months ago (2016-06-24 18:47:31 UTC) #47
commit-bot: I haz the power
4 years, 5 months ago (2016-06-24 18:50:11 UTC) #49
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/820646ff0c3aa9fb6ea4d8ff727e9f5b02b1ca2a
Cr-Commit-Position: refs/heads/master@{#401913}

Powered by Google App Engine
This is Rietveld 408576698