Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/common/pref_names.cc

Issue 12088022: Enable cloud policy by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698