| 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 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1984 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an | 1984 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an |
| 1985 // empty string, in which case the value will be ignored. | 1985 // empty string, in which case the value will be ignored. |
| 1986 // TODO(dubroy): This preference may not be necessary once | 1986 // TODO(dubroy): This preference may not be necessary once |
| 1987 // http://crosbug.com/17015 is implemented and the update engine can just | 1987 // http://crosbug.com/17015 is implemented and the update engine can just |
| 1988 // fetch the correct value from the policy. | 1988 // fetch the correct value from the policy. |
| 1989 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; | 1989 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; |
| 1990 | 1990 |
| 1991 // Value of the enums in TabStrip::LayoutType as an int. | 1991 // Value of the enums in TabStrip::LayoutType as an int. |
| 1992 const char kTabStripLayoutType[] = "tab_strip_layout_type"; | 1992 const char kTabStripLayoutType[] = "tab_strip_layout_type"; |
| 1993 | 1993 |
| 1994 // If true, cloud policy for the user is loaded once the user signs in. | 1994 // If true, cloud policy for the user is not loaded when the user signs in. |
| 1995 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; | 1995 const char kDisableCloudPolicyOnSignin[] = |
| 1996 "policy.disable_cloud_policy_on_signin"; |
| 1996 | 1997 |
| 1997 // Indicates that factory reset was requested from options page. | 1998 // Indicates that factory reset was requested from options page. |
| 1998 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1999 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
| 1999 | 2000 |
| 2000 // *************** SERVICE PREFS *************** | 2001 // *************** SERVICE PREFS *************** |
| 2001 // These are attached to the service process. | 2002 // These are attached to the service process. |
| 2002 | 2003 |
| 2003 const char kCloudPrintRoot[] = "cloud_print"; | 2004 const char kCloudPrintRoot[] = "cloud_print"; |
| 2004 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 2005 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 2005 // The unique id for this instance of the cloud print proxy. | 2006 // The unique id for this instance of the cloud print proxy. |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2234 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2235 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2235 | 2236 |
| 2236 #if defined(OS_CHROMEOS) | 2237 #if defined(OS_CHROMEOS) |
| 2237 // The RLZ brand code, if enabled. | 2238 // The RLZ brand code, if enabled. |
| 2238 const char kRLZBrand[] = "rlz.brand"; | 2239 const char kRLZBrand[] = "rlz.brand"; |
| 2239 // Whether RLZ pings are disabled. | 2240 // Whether RLZ pings are disabled. |
| 2240 const char kRLZDisabled[] = "rlz.disabled"; | 2241 const char kRLZDisabled[] = "rlz.disabled"; |
| 2241 #endif | 2242 #endif |
| 2242 | 2243 |
| 2243 } // namespace prefs | 2244 } // namespace prefs |
| OLD | NEW |