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

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

Issue 12088040: Add a SigninAllowed policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT, another try to upload. 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
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 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 const char kSyncSearchEngines[] = "sync.search_engines"; 1731 const char kSyncSearchEngines[] = "sync.search_engines";
1732 const char kSyncSessions[] = "sync.sessions"; 1732 const char kSyncSessions[] = "sync.sessions";
1733 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; 1733 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
1734 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; 1734 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
1735 const char kSyncDictionary[] = "sync.dictionary"; 1735 const char kSyncDictionary[] = "sync.dictionary";
1736 1736
1737 // Boolean used by enterprise configuration management in order to lock down 1737 // Boolean used by enterprise configuration management in order to lock down
1738 // sync. 1738 // sync.
1739 const char kSyncManaged[] = "sync.managed"; 1739 const char kSyncManaged[] = "sync.managed";
1740 1740
1741 // Boolean which stores if the user is allowed to signin to chrome.
1742 const char kSigninAllowed[] = "signin.allowed";
1743
1741 // Boolean to prevent sync from automatically starting up. This is 1744 // Boolean to prevent sync from automatically starting up. This is
1742 // used when sync is disabled by the user via the privacy dashboard. 1745 // used when sync is disabled by the user via the privacy dashboard.
1743 const char kSyncSuppressStart[] = "sync.suppress_start"; 1746 const char kSyncSuppressStart[] = "sync.suppress_start";
1744 1747
1745 // List of the currently acknowledged set of sync types, used to figure out 1748 // List of the currently acknowledged set of sync types, used to figure out
1746 // if a new sync type has rolled out so we can notify the user. 1749 // if a new sync type has rolled out so we can notify the user.
1747 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; 1750 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types";
1748 1751
1749 // Dictionary from sync model type (as an int) to max invalidation 1752 // Dictionary from sync model type (as an int) to max invalidation
1750 // version (int64 represented as a string). 1753 // version (int64 represented as a string).
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
2276 const char kRLZDisabled[] = "rlz.disabled"; 2279 const char kRLZDisabled[] = "rlz.disabled";
2277 #endif 2280 #endif
2278 2281
2279 #if defined(ENABLE_APP_LIST) 2282 #if defined(ENABLE_APP_LIST)
2280 // The directory in user data dir that contains the profile to be used with the 2283 // The directory in user data dir that contains the profile to be used with the
2281 // app launcher. 2284 // app launcher.
2282 extern const char kAppListProfile[] = "app_list.profile"; 2285 extern const char kAppListProfile[] = "app_list.profile";
2283 #endif 2286 #endif
2284 2287
2285 } // namespace prefs 2288 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698