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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1815 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an | 1815 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an |
1816 // empty string, in which case the value will be ignored. | 1816 // empty string, in which case the value will be ignored. |
1817 // TODO(dubroy): This preference may not be necessary once | 1817 // TODO(dubroy): This preference may not be necessary once |
1818 // http://crosbug.com/17015 is implemented and the update engine can just | 1818 // http://crosbug.com/17015 is implemented and the update engine can just |
1819 // fetch the correct value from the policy. | 1819 // fetch the correct value from the policy. |
1820 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; | 1820 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; |
1821 | 1821 |
1822 // Value of the enums in TabStrip::LayoutType as an int. | 1822 // Value of the enums in TabStrip::LayoutType as an int. |
1823 const char kTabStripLayoutType[] = "tab_strip_layout_type"; | 1823 const char kTabStripLayoutType[] = "tab_strip_layout_type"; |
1824 | 1824 |
| 1825 // If true, cloud policy for the user is loaded once the user signs in. |
| 1826 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; |
| 1827 |
1825 // *************** SERVICE PREFS *************** | 1828 // *************** SERVICE PREFS *************** |
1826 // These are attached to the service process. | 1829 // These are attached to the service process. |
1827 | 1830 |
1828 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1831 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1829 // The unique id for this instance of the cloud print proxy. | 1832 // The unique id for this instance of the cloud print proxy. |
1830 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1833 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1831 // The GAIA auth token for Cloud Print | 1834 // The GAIA auth token for Cloud Print |
1832 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1835 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1833 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1836 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1834 // This should eventually go away because the above token should work for both. | 1837 // This should eventually go away because the above token should work for both. |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2008 const char kNetworkProfileLastWarningTime[] = | 2011 const char kNetworkProfileLastWarningTime[] = |
2009 "network_profile.last_warning_time"; | 2012 "network_profile.last_warning_time"; |
2010 | 2013 |
2011 #if defined(OS_MACOSX) | 2014 #if defined(OS_MACOSX) |
2012 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2015 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
2013 const char kMacLeopardObsoleteInfobarLastShown[] = | 2016 const char kMacLeopardObsoleteInfobarLastShown[] = |
2014 "mac_105_obsolete_infobar_last_shown"; | 2017 "mac_105_obsolete_infobar_last_shown"; |
2015 #endif // defined(OS_MACOSX) | 2018 #endif // defined(OS_MACOSX) |
2016 | 2019 |
2017 } // namespace prefs | 2020 } // namespace prefs |
OLD | NEW |