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 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1793 // http://crosbug.com/17015 is implemented and the update engine can just | 1793 // http://crosbug.com/17015 is implemented and the update engine can just |
1794 // fetch the correct value from the policy. | 1794 // fetch the correct value from the policy. |
1795 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; | 1795 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; |
1796 | 1796 |
1797 // Value of the enums in TabStrip::LayoutType as an int. | 1797 // Value of the enums in TabStrip::LayoutType as an int. |
1798 const char kTabStripLayoutType[] = "tab_strip_layout_type"; | 1798 const char kTabStripLayoutType[] = "tab_strip_layout_type"; |
1799 | 1799 |
1800 // If true, cloud policy for the user is loaded once the user signs in. | 1800 // If true, cloud policy for the user is loaded once the user signs in. |
1801 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; | 1801 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; |
1802 | 1802 |
| 1803 // Debug information for SessionBackend. |
| 1804 const char kSessionRestoreFilesCycled[] = "session_restore.files_cycled"; |
| 1805 |
1803 // *************** SERVICE PREFS *************** | 1806 // *************** SERVICE PREFS *************** |
1804 // These are attached to the service process. | 1807 // These are attached to the service process. |
1805 | 1808 |
1806 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1809 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1807 // The unique id for this instance of the cloud print proxy. | 1810 // The unique id for this instance of the cloud print proxy. |
1808 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1811 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1809 // The GAIA auth token for Cloud Print | 1812 // The GAIA auth token for Cloud Print |
1810 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1813 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1811 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1814 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1812 // This should eventually go away because the above token should work for both. | 1815 // 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... |
1986 | 1989 |
1987 // Counts how many more times the 'profile on a network share' warning should be | 1990 // Counts how many more times the 'profile on a network share' warning should be |
1988 // shown to the user before the next silence period. | 1991 // shown to the user before the next silence period. |
1989 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1992 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
1990 // Tracks the time of the last shown warning. Used to reset | 1993 // Tracks the time of the last shown warning. Used to reset |
1991 // |network_profile.warnings_left| after a silence period. | 1994 // |network_profile.warnings_left| after a silence period. |
1992 const char kNetworkProfileLastWarningTime[] = | 1995 const char kNetworkProfileLastWarningTime[] = |
1993 "network_profile.last_warning_time"; | 1996 "network_profile.last_warning_time"; |
1994 | 1997 |
1995 } // namespace prefs | 1998 } // namespace prefs |
OLD | NEW |