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 1822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1833 // Customized wallpaper URL, which is already downloaded and scaled. | 1833 // Customized wallpaper URL, which is already downloaded and scaled. |
1834 // The URL from this preference must never be fetched. It is compared to the | 1834 // The URL from this preference must never be fetched. It is compared to the |
1835 // URL from customization document to check if wallpaper URL has changed | 1835 // URL from customization document to check if wallpaper URL has changed |
1836 // since wallpaper was cached. | 1836 // since wallpaper was cached. |
1837 const char kCustomizationDefaultWallpaperURL[] = | 1837 const char kCustomizationDefaultWallpaperURL[] = |
1838 "customization.default_wallpaper_url"; | 1838 "customization.default_wallpaper_url"; |
1839 | 1839 |
1840 // System uptime, when last logout started. | 1840 // System uptime, when last logout started. |
1841 // This is saved to file and cleared after chrome process starts. | 1841 // This is saved to file and cleared after chrome process starts. |
1842 const char kLogoutStartedLast[] = "chromeos.logout-started"; | 1842 const char kLogoutStartedLast[] = "chromeos.logout-started"; |
| 1843 |
| 1844 // The role of the device in the OOBE bootstrapping process. If it's a "slave" |
| 1845 // device, then it's eligible to be enrolled by a "master" device (which could |
| 1846 // be an Android app). |
| 1847 const char kIsBootstrappingSlave[] = "is_oobe_bootstrapping_slave"; |
| 1848 |
1843 #endif // defined(OS_CHROMEOS) | 1849 #endif // defined(OS_CHROMEOS) |
1844 | 1850 |
1845 // Whether there is a Flash version installed that supports clearing LSO data. | 1851 // Whether there is a Flash version installed that supports clearing LSO data. |
1846 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1852 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1847 | 1853 |
1848 // Whether we should show Pepper Flash-specific settings. | 1854 // Whether we should show Pepper Flash-specific settings. |
1849 const char kPepperFlashSettingsEnabled[] = | 1855 const char kPepperFlashSettingsEnabled[] = |
1850 "browser.pepper_flash_settings_enabled"; | 1856 "browser.pepper_flash_settings_enabled"; |
1851 | 1857 |
1852 // String which specifies where to store the disk cache. | 1858 // String which specifies where to store the disk cache. |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2264 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2259 | 2265 |
2260 // A list of origin trial features to disable by policy. | 2266 // A list of origin trial features to disable by policy. |
2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2267 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2262 | 2268 |
2263 // Policy that indicates the state of updates for the binary components. | 2269 // Policy that indicates the state of updates for the binary components. |
2264 const char kComponentUpdatesEnabled[] = | 2270 const char kComponentUpdatesEnabled[] = |
2265 "component_updates.component_updates_enabled"; | 2271 "component_updates.component_updates_enabled"; |
2266 | 2272 |
2267 } // namespace prefs | 2273 } // namespace prefs |
OLD | NEW |