OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
985 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 985 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
986 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; | 986 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; |
987 | 987 |
988 // Booleans specifying whether the user has selected to sync the following | 988 // Booleans specifying whether the user has selected to sync the following |
989 // datatypes. | 989 // datatypes. |
990 const char kSyncBookmarks[] = "sync.bookmarks"; | 990 const char kSyncBookmarks[] = "sync.bookmarks"; |
991 const char kSyncPasswords[] = "sync.passwords"; | 991 const char kSyncPasswords[] = "sync.passwords"; |
992 const char kSyncPreferences[] = "sync.preferences"; | 992 const char kSyncPreferences[] = "sync.preferences"; |
993 const char kSyncApps[] = "sync.apps"; | 993 const char kSyncApps[] = "sync.apps"; |
994 const char kSyncAutofill[] = "sync.autofill"; | 994 const char kSyncAutofill[] = "sync.autofill"; |
995 const char kSyncAutofill_profile[] = "sync.autofillprofile"; | |
tim (not reviewing)
2010/12/13 19:24:33
the underscore should be on the RHS here
kSyncAuto
lipalani
2010/12/14 21:05:57
Done.
| |
995 const char kSyncThemes[] = "sync.themes"; | 996 const char kSyncThemes[] = "sync.themes"; |
996 const char kSyncTypedUrls[] = "sync.typed_urls"; | 997 const char kSyncTypedUrls[] = "sync.typed_urls"; |
997 const char kSyncExtensions[] = "sync.extensions"; | 998 const char kSyncExtensions[] = "sync.extensions"; |
998 const char kSyncSessions[] = "sync.sessions"; | 999 const char kSyncSessions[] = "sync.sessions"; |
999 | 1000 |
1000 // Boolean used by enterprise configuration management in order to lock down | 1001 // Boolean used by enterprise configuration management in order to lock down |
1001 // sync. | 1002 // sync. |
1002 const char kSyncManaged[] = "sync.managed"; | 1003 const char kSyncManaged[] = "sync.managed"; |
1003 | 1004 |
1004 // Boolean to prevent sync from automatically starting up. This is | 1005 // Boolean to prevent sync from automatically starting up. This is |
1005 // used when sync is disabled by the user via the privacy dashboard. | 1006 // used when sync is disabled by the user via the privacy dashboard. |
1006 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1007 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1007 | 1008 |
1008 // Boolean to reperesent if sync credentials have been migrated from the | 1009 // Boolean to reperesent if sync credentials have been migrated from the |
1009 // user settings DB to the token service. | 1010 // user settings DB to the token service. |
1010 const char kSyncCredentialsMigrated[] = "sync.credentials_migrated"; | 1011 const char kSyncCredentialsMigrated[] = "sync.credentials_migrated"; |
1011 | 1012 |
1013 // Boolean to represent whether the legacy autofill profile data has been | |
1014 // migrated to the new model. | |
1015 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; | |
1016 | |
1012 // A string that can be used to restore sync encryption infrastructure on | 1017 // A string that can be used to restore sync encryption infrastructure on |
1013 // startup so that the user doesn't need to provide credentials on each start. | 1018 // startup so that the user doesn't need to provide credentials on each start. |
1014 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1019 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
1015 | 1020 |
1016 // Boolean tracking whether the user chose to specify a secondary encryption | 1021 // Boolean tracking whether the user chose to specify a secondary encryption |
1017 // passphrase. | 1022 // passphrase. |
1018 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1023 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
1019 | 1024 |
1020 // String that identifies the user logged into sync and other google services. | 1025 // String that identifies the user logged into sync and other google services. |
1021 const char kGoogleServicesUsername[] = "google.services.username"; | 1026 const char kGoogleServicesUsername[] = "google.services.username"; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1118 const char kManagedDefaultPluginsSetting[] = | 1123 const char kManagedDefaultPluginsSetting[] = |
1119 "profile.managed_default_content_settings.plugins"; | 1124 "profile.managed_default_content_settings.plugins"; |
1120 const char kManagedDefaultPopupsSetting[] = | 1125 const char kManagedDefaultPopupsSetting[] = |
1121 "profile.managed_default_content_settings.popups"; | 1126 "profile.managed_default_content_settings.popups"; |
1122 | 1127 |
1123 // Dictionary for storing the set of known background pages (keys are extension | 1128 // Dictionary for storing the set of known background pages (keys are extension |
1124 // IDs of background page owners, value is a boolean that is true if the user | 1129 // IDs of background page owners, value is a boolean that is true if the user |
1125 // needs to acknowledge this page. | 1130 // needs to acknowledge this page. |
1126 const char kKnownBackgroundPages[] = "background_pages.known"; | 1131 const char kKnownBackgroundPages[] = "background_pages.known"; |
1127 } // namespace prefs | 1132 } // namespace prefs |
OLD | NEW |