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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 976 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
977 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; | 977 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; |
978 | 978 |
979 // Booleans specifying whether the user has selected to sync the following | 979 // Booleans specifying whether the user has selected to sync the following |
980 // datatypes. | 980 // datatypes. |
981 const char kSyncBookmarks[] = "sync.bookmarks"; | 981 const char kSyncBookmarks[] = "sync.bookmarks"; |
982 const char kSyncPasswords[] = "sync.passwords"; | 982 const char kSyncPasswords[] = "sync.passwords"; |
983 const char kSyncPreferences[] = "sync.preferences"; | 983 const char kSyncPreferences[] = "sync.preferences"; |
984 const char kSyncApps[] = "sync.apps"; | 984 const char kSyncApps[] = "sync.apps"; |
985 const char kSyncAutofill[] = "sync.autofill"; | 985 const char kSyncAutofill[] = "sync.autofill"; |
| 986 const char kSyncAutofill_profile[] = "sync.autofillprofile"; |
986 const char kSyncThemes[] = "sync.themes"; | 987 const char kSyncThemes[] = "sync.themes"; |
987 const char kSyncTypedUrls[] = "sync.typed_urls"; | 988 const char kSyncTypedUrls[] = "sync.typed_urls"; |
988 const char kSyncExtensions[] = "sync.extensions"; | 989 const char kSyncExtensions[] = "sync.extensions"; |
989 const char kSyncSessions[] = "sync.sessions"; | 990 const char kSyncSessions[] = "sync.sessions"; |
990 | 991 |
991 // Boolean used by enterprise configuration management in order to lock down | 992 // Boolean used by enterprise configuration management in order to lock down |
992 // sync. | 993 // sync. |
993 const char kSyncManaged[] = "sync.managed"; | 994 const char kSyncManaged[] = "sync.managed"; |
994 | 995 |
995 // Boolean to prevent sync from automatically starting up. This is | 996 // Boolean to prevent sync from automatically starting up. This is |
996 // used when sync is disabled by the user via the privacy dashboard. | 997 // used when sync is disabled by the user via the privacy dashboard. |
997 const char kSyncSuppressStart[] = "sync.suppress_start"; | 998 const char kSyncSuppressStart[] = "sync.suppress_start"; |
998 | 999 |
999 // Boolean to reperesent if sync credentials have been migrated from the | 1000 // Boolean to reperesent if sync credentials have been migrated from the |
1000 // user settings DB to the token service. | 1001 // user settings DB to the token service. |
1001 const char kSyncCredentialsMigrated[] = "sync.credentials_migrated"; | 1002 const char kSyncCredentialsMigrated[] = "sync.credentials_migrated"; |
1002 | 1003 |
| 1004 // Boolean to represent whether the legacy autofill profile data has been |
| 1005 // migrated to the new model. |
| 1006 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; |
| 1007 |
1003 // A string that can be used to restore sync encryption infrastructure on | 1008 // A string that can be used to restore sync encryption infrastructure on |
1004 // startup so that the user doesn't need to provide credentials on each start. | 1009 // startup so that the user doesn't need to provide credentials on each start. |
1005 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 1010 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
1006 | 1011 |
1007 // Boolean tracking whether the user chose to specify a secondary encryption | 1012 // Boolean tracking whether the user chose to specify a secondary encryption |
1008 // passphrase. | 1013 // passphrase. |
1009 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; | 1014 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; |
1010 | 1015 |
1011 // String that identifies the user logged into sync and other google services. | 1016 // String that identifies the user logged into sync and other google services. |
1012 const char kGoogleServicesUsername[] = "google.services.username"; | 1017 const char kGoogleServicesUsername[] = "google.services.username"; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1105 const char kManagedDefaultImagesSetting[] = | 1110 const char kManagedDefaultImagesSetting[] = |
1106 "profile.managed_default_content_settings.images"; | 1111 "profile.managed_default_content_settings.images"; |
1107 const char kManagedDefaultJavaScriptSetting[] = | 1112 const char kManagedDefaultJavaScriptSetting[] = |
1108 "profile.managed_default_content_settings.javascript"; | 1113 "profile.managed_default_content_settings.javascript"; |
1109 const char kManagedDefaultPluginsSetting[] = | 1114 const char kManagedDefaultPluginsSetting[] = |
1110 "profile.managed_default_content_settings.plugins"; | 1115 "profile.managed_default_content_settings.plugins"; |
1111 const char kManagedDefaultPopupsSetting[] = | 1116 const char kManagedDefaultPopupsSetting[] = |
1112 "profile.managed_default_content_settings.popups"; | 1117 "profile.managed_default_content_settings.popups"; |
1113 | 1118 |
1114 } // namespace prefs | 1119 } // namespace prefs |
OLD | NEW |