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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1824 | 1824 |
1825 // A string pref with initial locale set in VPD or manifest. | 1825 // A string pref with initial locale set in VPD or manifest. |
1826 const char kInitialLocale[] = "intl.initial_locale"; | 1826 const char kInitialLocale[] = "intl.initial_locale"; |
1827 | 1827 |
1828 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 1828 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
1829 const char kOobeComplete[] = "OobeComplete"; | 1829 const char kOobeComplete[] = "OobeComplete"; |
1830 | 1830 |
1831 // The name of the screen that has to be shown if OOBE has been interrupted. | 1831 // The name of the screen that has to be shown if OOBE has been interrupted. |
1832 const char kOobeScreenPending[] = "OobeScreenPending"; | 1832 const char kOobeScreenPending[] = "OobeScreenPending"; |
1833 | 1833 |
| 1834 // A boolean pref for whether the Goodies promotion webpage has been displayed, |
| 1835 // or otherwise disqualified for auto-display, on this device. |
| 1836 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; |
| 1837 |
1834 // A boolean pref of the device registered flag (second part after first login). | 1838 // A boolean pref of the device registered flag (second part after first login). |
1835 const char kDeviceRegistered[] = "DeviceRegistered"; | 1839 const char kDeviceRegistered[] = "DeviceRegistered"; |
1836 | 1840 |
1837 // Boolean pref to signal corrupted enrollment to force the device through | 1841 // Boolean pref to signal corrupted enrollment to force the device through |
1838 // enrollment recovery flow upon next boot. | 1842 // enrollment recovery flow upon next boot. |
1839 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; | 1843 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; |
1840 | 1844 |
1841 // List of usernames that used certificates pushed by policy before. | 1845 // List of usernames that used certificates pushed by policy before. |
1842 // This is used to prevent these users from joining multiprofile sessions. | 1846 // This is used to prevent these users from joining multiprofile sessions. |
1843 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 1847 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2235 "supervised_users.whitelists"; | 2239 "supervised_users.whitelists"; |
2236 | 2240 |
2237 #if defined(ENABLE_EXTENSIONS) | 2241 #if defined(ENABLE_EXTENSIONS) |
2238 // Policy that indicates how to handle animated images. | 2242 // Policy that indicates how to handle animated images. |
2239 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2243 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2240 #endif | 2244 #endif |
2241 | 2245 |
2242 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2246 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2243 | 2247 |
2244 } // namespace prefs | 2248 } // namespace prefs |
OLD | NEW |