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