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 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2281 const char kRLZDisabled[] = "rlz.disabled"; | 2284 const char kRLZDisabled[] = "rlz.disabled"; |
2282 #endif | 2285 #endif |
2283 | 2286 |
2284 #if defined(ENABLE_APP_LIST) | 2287 #if defined(ENABLE_APP_LIST) |
2285 // The directory in user data dir that contains the profile to be used with the | 2288 // The directory in user data dir that contains the profile to be used with the |
2286 // app launcher. | 2289 // app launcher. |
2287 extern const char kAppListProfile[] = "app_list.profile"; | 2290 extern const char kAppListProfile[] = "app_list.profile"; |
2288 #endif | 2291 #endif |
2289 | 2292 |
2290 } // namespace prefs | 2293 } // namespace prefs |
OLD | NEW |