| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 const char kNetworkPredictionEnabled[] = "dns_prefetching.enabled"; | 521 const char kNetworkPredictionEnabled[] = "dns_prefetching.enabled"; |
| 522 | 522 |
| 523 // An integer representing the state of the default apps installation process. | 523 // An integer representing the state of the default apps installation process. |
| 524 // This value is persisted in the profile's user preferences because the process | 524 // This value is persisted in the profile's user preferences because the process |
| 525 // is async, and the user may have stopped chrome in the middle. The next time | 525 // is async, and the user may have stopped chrome in the middle. The next time |
| 526 // the profile is opened, the process will continue from where it left off. | 526 // the profile is opened, the process will continue from where it left off. |
| 527 // | 527 // |
| 528 // See possible values in external_provider_impl.cc. | 528 // See possible values in external_provider_impl.cc. |
| 529 const char kDefaultAppsInstallState[] = "default_apps_install_state"; | 529 const char kDefaultAppsInstallState[] = "default_apps_install_state"; |
| 530 | 530 |
| 531 // A boolean pref set to true if the Chrome Web Store icons should be hidden |
| 532 // from the New Tab Page. |
| 533 const char kHideWebStoreIcon[] = "hide_web_store_icon"; |
| 534 |
| 531 #if defined(OS_CHROMEOS) | 535 #if defined(OS_CHROMEOS) |
| 532 // An integer pref to initially mute volume if 1. This pref is ignored if | 536 // An integer pref to initially mute volume if 1. This pref is ignored if |
| 533 // |kAudioOutputAllowed| is set to false, but its value is preserved, therefore | 537 // |kAudioOutputAllowed| is set to false, but its value is preserved, therefore |
| 534 // when the policy is lifted the original mute state is restored. | 538 // when the policy is lifted the original mute state is restored. |
| 535 const char kAudioMute[] = "settings.audio.mute"; | 539 const char kAudioMute[] = "settings.audio.mute"; |
| 536 | 540 |
| 537 // A double pref storing the user-requested volume. | 541 // A double pref storing the user-requested volume. |
| 538 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 542 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
| 539 | 543 |
| 540 // A boolean pref set to true if touchpad tap-to-click is enabled. | 544 // A boolean pref set to true if touchpad tap-to-click is enabled. |
| (...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2229 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2233 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2230 | 2234 |
| 2231 #if defined(OS_CHROMEOS) | 2235 #if defined(OS_CHROMEOS) |
| 2232 // The RLZ brand code, if enabled. | 2236 // The RLZ brand code, if enabled. |
| 2233 const char kRLZBrand[] = "rlz.brand"; | 2237 const char kRLZBrand[] = "rlz.brand"; |
| 2234 // Whether RLZ pings are disabled. | 2238 // Whether RLZ pings are disabled. |
| 2235 const char kRLZDisabled[] = "rlz.disabled"; | 2239 const char kRLZDisabled[] = "rlz.disabled"; |
| 2236 #endif | 2240 #endif |
| 2237 | 2241 |
| 2238 } // namespace prefs | 2242 } // namespace prefs |
| OLD | NEW |