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

Unified Diff: chrome/browser/resources/options/browser_options.html

Issue 2016073004: Show a visual indicator for the progress of auto-click. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Used a timedelta in autoclick controller instead of int. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/browser_options.html
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html
index 355fc40cf684260af07d991878b7afaea39dc994..8552df7f6f0c5f3c7199c35dd9e3d5578b622218 100644
--- a/chrome/browser/resources/options/browser_options.html
+++ b/chrome/browser/resources/options/browser_options.html
@@ -955,15 +955,18 @@
data-type="number"
aria-labelledby="accessibility-autoclick-label"
pref="settings.a11y.autoclick_delay_ms">
- <option value="200"
+ <!-- 18n strings contain the autoclick duration; if the autoclick
jdufault 2016/06/09 16:41:26 Missing the i in i18n
sammiequon 2016/06/10 19:30:26 Done.
+ timing gets changed, then the 18n strings also
+ need to be updated. -->
+ <option value="600"
i18n-content="autoclickDelayExtremelyShort"></option>
- <option value="400"
+ <option value="800"
i18n-content="autoclickDelayVeryShort"></option>
- <option value="600" i18n-content="autoclickDelayShort">
+ <option value="1000" i18n-content="autoclickDelayShort">
</option>
- <option value="800" i18n-content="autoclickDelayLong">
+ <option value="2000" i18n-content="autoclickDelayLong">
</option>
- <option value="1000"
+ <option value="4000"
i18n-content="autoclickDelayVeryLong"></option>
</select>
<span class="controlled-setting-indicator"

Powered by Google App Engine
This is Rietveld 408576698