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

Issue 8340002: Enable brightness controls for all ChromeOS builds. Make brightness controls auto-repeat. (Closed)

Created:
9 years, 1 month ago by kevers
Modified:
9 years, 1 month ago
CC:
chromium-reviews, arv (Not doing code reviews), cwolfe
Visibility:
Public.

Description

Enable brightness controls for all ChromeOS builds. Make brightness controls auto-repeat. BUG=chromium:100732 TEST=Launch ChromeOS and go to the System settings page. Tap or press and hold the brightness buttons to adjust the screen brightness. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=108022

Patch Set 1 #

Patch Set 2 : Formatting tweaks. #

Patch Set 3 : Remove trailing blank line. #

Total comments: 2

Patch Set 4 : Fix typo. #

Total comments: 12

Patch Set 5 : Mark variables and methods as private. #

Patch Set 6 : Use single spaces between sentences in comments. #

Patch Set 7 : Disambiguate documentation. #

Patch Set 8 : Fix arming the repeat button on the start of a touch gesture. #

Total comments: 2

Patch Set 9 : Fix formatting of method arguments. Merge with trunk. #

Total comments: 2

Patch Set 10 : Update mechanism for attaching a button held action. #

Total comments: 1

Patch Set 11 : Cleanup event listener. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+176 lines, -24 lines) Patch
M chrome/browser/resources/options/chromeos/system_options.html View 1 2 3 4 5 6 7 8 1 chunk +10 lines, -12 lines 0 comments Download
M chrome/browser/resources/options/chromeos/system_options.js View 1 2 3 4 5 6 7 8 9 10 2 chunks +11 lines, -12 lines 0 comments Download
M chrome/browser/resources/options/options.html View 1 chunk +1 line, -0 lines 0 comments Download
A chrome/browser/resources/shared/js/cr/ui/repeating_button.js View 1 2 3 4 5 6 7 8 9 1 chunk +152 lines, -0 lines 0 comments Download
M chrome/browser/resources/shared_resources.grd View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
kevers
9 years, 1 month ago (2011-10-26 20:30:58 UTC) #1
Rick Byers
Why do you want to enable brightness buttons in the options screen for all ChromeOS ...
9 years, 1 month ago (2011-10-26 20:48:35 UTC) #2
kevers1
Removed the touch only check because of chromiumos:21855. -- Kevin On Wed, Oct 26, 2011 ...
9 years, 1 month ago (2011-10-26 20:55:26 UTC) #3
Daniel Erat
(Thanks for doing this!) On 2011/10/26 20:55:26, kevers1 wrote: > Removed the touch only check ...
9 years, 1 month ago (2011-10-26 20:57:34 UTC) #4
cwolfe
Thanks a lot for picking this up. http://codereview.chromium.org/8340002/diff/3001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/3001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode101 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:101: * @param ...
9 years, 1 month ago (2011-10-26 21:03:54 UTC) #5
kevers
http://codereview.chromium.org/8340002/diff/3001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/3001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode101 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:101: * @param {!Event} e The triggeed event. On 2011/10/26 ...
9 years, 1 month ago (2011-10-26 21:28:33 UTC) #6
James Hawkins
http://codereview.chromium.org/8340002/diff/7003/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/7003/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode6 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:6: nit: Remove blank line. http://codereview.chromium.org/8340002/diff/7003/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode8 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:8: * Creates a ...
9 years, 1 month ago (2011-10-26 21:49:46 UTC) #7
kevers
http://codereview.chromium.org/8340002/diff/7003/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/7003/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode6 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:6: On 2011/10/26 21:49:46, James Hawkins wrote: > nit: Remove ...
9 years, 1 month ago (2011-10-27 15:06:34 UTC) #8
James Hawkins
LGTM with nit. http://codereview.chromium.org/8340002/diff/8001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/8001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode99 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:99: self.intervalCallback_ = setInterval(self.buttonHeld_.bind(self), nit: Start of ...
9 years, 1 month ago (2011-10-29 22:07:45 UTC) #9
Rick Byers
Channeling Arv, I have one suggestion for the cr.ui piece. Also, you're adding a unit ...
9 years, 1 month ago (2011-10-31 15:35:55 UTC) #10
kevers
http://codereview.chromium.org/8340002/diff/8001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js File chrome/browser/resources/shared/js/cr/ui/repeating_button.js (right): http://codereview.chromium.org/8340002/diff/8001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode99 chrome/browser/resources/shared/js/cr/ui/repeating_button.js:99: self.intervalCallback_ = setInterval(self.buttonHeld_.bind(self), On 2011/10/29 22:07:45, James Hawkins wrote: ...
9 years, 1 month ago (2011-10-31 19:07:28 UTC) #11
Rick Byers
On 2011/10/31 19:07:28, kevers wrote: http://codereview.chromium.org/8340002/diff/12001/chrome/browser/resources/shared/js/cr/ui/repeating_button.js#newcode138 > chrome/browser/resources/shared/js/cr/ui/repeating_button.js:138: > this.onButtonHeldAction(); > On 2011/10/31 15:35:56, Rick ...
9 years, 1 month ago (2011-10-31 19:22:57 UTC) #12
Rick Byers
Whoops - meant to include this, here's the nit. LGTM otherwise. http://codereview.chromium.org/8340002/diff/19002/chrome/browser/resources/options/chromeos/system_options.js File chrome/browser/resources/options/chromeos/system_options.js (right): ...
9 years, 1 month ago (2011-10-31 19:23:20 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kevers@chromium.org/8340002/24001
9 years, 1 month ago (2011-10-31 21:00:51 UTC) #14
commit-bot: I haz the power
9 years, 1 month ago (2011-10-31 22:17:53 UTC) #15
Change committed as 108022

Powered by Google App Engine
This is Rietveld 408576698