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 1679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1690 const char kSyncSearchEngines[] = "sync.search_engines"; | 1690 const char kSyncSearchEngines[] = "sync.search_engines"; |
1691 const char kSyncSessions[] = "sync.sessions"; | 1691 const char kSyncSessions[] = "sync.sessions"; |
1692 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1692 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
1693 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1693 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1694 const char kSyncDictionary[] = "sync.dictionary"; | 1694 const char kSyncDictionary[] = "sync.dictionary"; |
1695 | 1695 |
1696 // Boolean used by enterprise configuration management in order to lock down | 1696 // Boolean used by enterprise configuration management in order to lock down |
1697 // sync. | 1697 // sync. |
1698 const char kSyncManaged[] = "sync.managed"; | 1698 const char kSyncManaged[] = "sync.managed"; |
1699 | 1699 |
| 1700 // Boolean which stores if the user is allowed to signin to chrome. |
| 1701 const char kSigninAllowed[] = "signin.allowed"; |
| 1702 |
1700 // Boolean to prevent sync from automatically starting up. This is | 1703 // Boolean to prevent sync from automatically starting up. This is |
1701 // used when sync is disabled by the user via the privacy dashboard. | 1704 // used when sync is disabled by the user via the privacy dashboard. |
1702 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1705 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1703 | 1706 |
1704 // List of the currently acknowledged set of sync types, used to figure out | 1707 // List of the currently acknowledged set of sync types, used to figure out |
1705 // if a new sync type has rolled out so we can notify the user. | 1708 // if a new sync type has rolled out so we can notify the user. |
1706 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; | 1709 const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types"; |
1707 | 1710 |
1708 // Dictionary from sync model type (as an int) to max invalidation | 1711 // Dictionary from sync model type (as an int) to max invalidation |
1709 // version (int64 represented as a string). | 1712 // version (int64 represented as a string). |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2232 const char kRLZDisabled[] = "rlz.disabled"; | 2235 const char kRLZDisabled[] = "rlz.disabled"; |
2233 #endif | 2236 #endif |
2234 | 2237 |
2235 #if defined(ENABLE_APP_LIST) | 2238 #if defined(ENABLE_APP_LIST) |
2236 // The directory in user data dir that contains the profile to be used with the | 2239 // The directory in user data dir that contains the profile to be used with the |
2237 // app launcher. | 2240 // app launcher. |
2238 extern const char kAppListProfile[] = "app_list.profile"; | 2241 extern const char kAppListProfile[] = "app_list.profile"; |
2239 #endif | 2242 #endif |
2240 | 2243 |
2241 } // namespace prefs | 2244 } // namespace prefs |
OLD | NEW |