| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 1825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1836 // Customized wallpaper URL, which is already downloaded and scaled. | 1836 // Customized wallpaper URL, which is already downloaded and scaled. |
| 1837 // The URL from this preference must never be fetched. It is compared to the | 1837 // The URL from this preference must never be fetched. It is compared to the |
| 1838 // URL from customization document to check if wallpaper URL has changed | 1838 // URL from customization document to check if wallpaper URL has changed |
| 1839 // since wallpaper was cached. | 1839 // since wallpaper was cached. |
| 1840 const char kCustomizationDefaultWallpaperURL[] = | 1840 const char kCustomizationDefaultWallpaperURL[] = |
| 1841 "customization.default_wallpaper_url"; | 1841 "customization.default_wallpaper_url"; |
| 1842 | 1842 |
| 1843 // System uptime, when last logout started. | 1843 // System uptime, when last logout started. |
| 1844 // This is saved to file and cleared after chrome process starts. | 1844 // This is saved to file and cleared after chrome process starts. |
| 1845 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1845 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1846 | |
| 1847 // An integer pref of the current consumer management stage. The meaning of the | |
| 1848 // value is defined in: | |
| 1849 // chrome/browser/chromeos/policy/consumer_management_stage.h | |
| 1850 const char kConsumerManagementStage[] = "consumer_management.stage"; | |
| 1851 #endif // defined(OS_CHROMEOS) | 1846 #endif // defined(OS_CHROMEOS) |
| 1852 | 1847 |
| 1853 // Whether there is a Flash version installed that supports clearing LSO data. | 1848 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1854 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1849 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1855 | 1850 |
| 1856 // Whether we should show Pepper Flash-specific settings. | 1851 // Whether we should show Pepper Flash-specific settings. |
| 1857 const char kPepperFlashSettingsEnabled[] = | 1852 const char kPepperFlashSettingsEnabled[] = |
| 1858 "browser.pepper_flash_settings_enabled"; | 1853 "browser.pepper_flash_settings_enabled"; |
| 1859 | 1854 |
| 1860 // String which specifies where to store the disk cache. | 1855 // String which specifies where to store the disk cache. |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2259 #endif | 2254 #endif |
| 2260 | 2255 |
| 2261 // The base64-encoded representation of the public key to use to validate origin | 2256 // The base64-encoded representation of the public key to use to validate origin |
| 2262 // trial token signatures. | 2257 // trial token signatures. |
| 2263 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2264 | 2259 |
| 2265 // A list of origin trial features to disable by policy. | 2260 // A list of origin trial features to disable by policy. |
| 2266 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2267 | 2262 |
| 2268 } // namespace prefs | 2263 } // namespace prefs |
| OLD | NEW |