summaryrefslogtreecommitdiffstats
path: root/chromeos/chromeos_pref_names.h
Commit message (Collapse)AuthorAgeFilesLines
* Creating a "Quirks Client" to download icc files and other display infoglevin2016-03-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | ("quirks") from a Quirks Server. These provide display-specific tuning (e.g. gamma ramps) on a per-monitor basis. Each Quirks Client handles downloading and writing a single file. The single Quirks Manager handles external requests for file paths, creates clients when downloads are needed, and manages their life cycle. For more info, see go/cros-quirks-client-dd (particularly the "Code Design" section). BUG=549349 TEST=Start up device that has a an icc file on the Quirks Server, check that file is downloaded to /var/cache/display_profiles. At next startup, the gamma correction in the icc file should be applied to the display (this will only be visible to the degree that the gamma correction is large enough to be noticeable; the correct functioning of the Quirks Client is primarily determined by the appearance of the file). Review URL: https://codereview.chromium.org/1528963002 Cr-Commit-Position: refs/heads/master@{#382962}
* Store audio device's active state in preferencehychao2016-01-121-0/+1
| | | | | | | | | | | | Use the stable device id provided by CRAS as key to store the latest preference that user selects to or away from an audio device. BUG=308143 Review URL: https://codereview.chromium.org/1380103003 Cr-Commit-Position: refs/heads/master@{#368845}
* cros: Move AudioDevicesPrefHandlerImpl to //chromeos/audiojamescook2014-12-181-0/+22
This consolidates all the audio device code in //chromeos/audio and will make it possible for app_shell to create a real CrasAudioHandler. * Make the "allow audio capture" preference optional so that it can be used by Chrome and skipped by app_shell. * Introduce chromeos/chromeos_pref_names.h/cc for Chrome OS specific prefs. The next CL will connect this code to app_shell. BUG=442401 TEST=added to chromeos_unittests AudioDevicesPrefHandlerTest Review URL: https://codereview.chromium.org/805373002 Cr-Commit-Position: refs/heads/master@{#308919}