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 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1802 | 1802 |
1803 // A string pref with initial locale set in VPD or manifest. | 1803 // A string pref with initial locale set in VPD or manifest. |
1804 const char kInitialLocale[] = "intl.initial_locale"; | 1804 const char kInitialLocale[] = "intl.initial_locale"; |
1805 | 1805 |
1806 // A boolean pref of the OOBE complete flag (first OOBE part before login). | 1806 // A boolean pref of the OOBE complete flag (first OOBE part before login). |
1807 const char kOobeComplete[] = "OobeComplete"; | 1807 const char kOobeComplete[] = "OobeComplete"; |
1808 | 1808 |
1809 // The name of the screen that has to be shown if OOBE has been interrupted. | 1809 // The name of the screen that has to be shown if OOBE has been interrupted. |
1810 const char kOobeScreenPending[] = "OobeScreenPending"; | 1810 const char kOobeScreenPending[] = "OobeScreenPending"; |
1811 | 1811 |
| 1812 // A boolean pref for whether the Goodies promotion webpage has been displayed, |
| 1813 // or otherwise disqualified for auto-display, on this device. |
| 1814 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; |
| 1815 |
1812 // A boolean pref of the device registered flag (second part after first login). | 1816 // A boolean pref of the device registered flag (second part after first login). |
1813 const char kDeviceRegistered[] = "DeviceRegistered"; | 1817 const char kDeviceRegistered[] = "DeviceRegistered"; |
1814 | 1818 |
1815 // Boolean pref to signal corrupted enrollment to force the device through | 1819 // Boolean pref to signal corrupted enrollment to force the device through |
1816 // enrollment recovery flow upon next boot. | 1820 // enrollment recovery flow upon next boot. |
1817 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; | 1821 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; |
1818 | 1822 |
1819 // List of usernames that used certificates pushed by policy before. | 1823 // List of usernames that used certificates pushed by policy before. |
1820 // This is used to prevent these users from joining multiprofile sessions. | 1824 // This is used to prevent these users from joining multiprofile sessions. |
1821 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 1825 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2213 "supervised_users.whitelists"; | 2217 "supervised_users.whitelists"; |
2214 | 2218 |
2215 #if defined(ENABLE_EXTENSIONS) | 2219 #if defined(ENABLE_EXTENSIONS) |
2216 // Policy that indicates how to handle animated images. | 2220 // Policy that indicates how to handle animated images. |
2217 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2221 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2218 #endif | 2222 #endif |
2219 | 2223 |
2220 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2224 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2221 | 2225 |
2222 } // namespace prefs | 2226 } // namespace prefs |
OLD | NEW |