OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromeos/chromeos_pref_names.h" | 5 #include "chromeos/chromeos_pref_names.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 namespace prefs { | 8 namespace prefs { |
9 | 9 |
10 // A dictionary pref to hold the mute setting for all the currently known | 10 // A dictionary pref to hold the mute setting for all the currently known |
(...skipping 20 matching lines...) Expand all Loading... |
31 // A double pref storing the user-requested volume. This setting is here only | 31 // A double pref storing the user-requested volume. This setting is here only |
32 // for migration purposes now. It is being replaced by the | 32 // for migration purposes now. It is being replaced by the |
33 // |kAudioDevicesVolumePercent| setting. | 33 // |kAudioDevicesVolumePercent| setting. |
34 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 34 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
35 | 35 |
36 // A dictionary pref that maps stable device id string to |AudioDeviceState|. | 36 // A dictionary pref that maps stable device id string to |AudioDeviceState|. |
37 // Different state values indicate whether or not a device has been selected | 37 // Different state values indicate whether or not a device has been selected |
38 // as the active one for audio I/O, or it's a new plugged device. | 38 // as the active one for audio I/O, or it's a new plugged device. |
39 const char kAudioDevicesState[] = "settings.audio.device_state"; | 39 const char kAudioDevicesState[] = "settings.audio.device_state"; |
40 | 40 |
| 41 // A dictionary of info for Quirks Client/Server interaction, mostly last server |
| 42 // request times, keyed to display product_id's. |
| 43 const char kQuirksClientLastServerCheck[] = "quirks_client.last_server_check"; |
| 44 |
41 } // namespace prefs | 45 } // namespace prefs |
42 } // namespace chromeos | 46 } // namespace chromeos |
43 | 47 |
OLD | NEW |