| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 // OBSOLETE. Boolean that is true if the form AutoFill is on (will record | 128 // OBSOLETE. Boolean that is true if the form AutoFill is on (will record |
| 129 // values entered in text inputs in forms and shows them in a popup when user | 129 // values entered in text inputs in forms and shows them in a popup when user |
| 130 // type in a text input with the same name later on). This has been superseded | 130 // type in a text input with the same name later on). This has been superseded |
| 131 // by kAutoFillEnabled. | 131 // by kAutoFillEnabled. |
| 132 const char kFormAutofillEnabled[] = "profile.form_autofill_enabled"; | 132 const char kFormAutofillEnabled[] = "profile.form_autofill_enabled"; |
| 133 | 133 |
| 134 // Boolean that is true when SafeBrowsing is enabled. | 134 // Boolean that is true when SafeBrowsing is enabled. |
| 135 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 135 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
| 136 | 136 |
| 137 // Boolean that is true when Incognito support is enabled. | |
| 138 const char kIncognitoEnabled[] = "incognito.enabled"; | |
| 139 | |
| 140 // Boolean that is true when SafeBrowsing Malware Report is enabled. | 137 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
| 141 const char kSafeBrowsingReportingEnabled[] = | 138 const char kSafeBrowsingReportingEnabled[] = |
| 142 "safebrowsing.reporting_enabled"; | 139 "safebrowsing.reporting_enabled"; |
| 143 | 140 |
| 144 // Boolean that is true when Suggest support is enabled. | 141 // Boolean that is true when Suggest support is enabled. |
| 145 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; | 142 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; |
| 146 | 143 |
| 147 // OBSOLETE. Enum that specifies whether to enforce a third-party cookie | 144 // OBSOLETE. Enum that specifies whether to enforce a third-party cookie |
| 148 // blocking policy. This has been superseded by kDefaultContentSettings + | 145 // blocking policy. This has been superseded by kDefaultContentSettings + |
| 149 // kBlockThirdPartyCookies. | 146 // kBlockThirdPartyCookies. |
| (...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1203 const char kManagedDefaultPluginsSetting[] = | 1200 const char kManagedDefaultPluginsSetting[] = |
| 1204 "profile.managed_default_content_settings.plugins"; | 1201 "profile.managed_default_content_settings.plugins"; |
| 1205 const char kManagedDefaultPopupsSetting[] = | 1202 const char kManagedDefaultPopupsSetting[] = |
| 1206 "profile.managed_default_content_settings.popups"; | 1203 "profile.managed_default_content_settings.popups"; |
| 1207 | 1204 |
| 1208 // Dictionary for storing the set of known background pages (keys are extension | 1205 // Dictionary for storing the set of known background pages (keys are extension |
| 1209 // IDs of background page owners, value is a boolean that is true if the user | 1206 // IDs of background page owners, value is a boolean that is true if the user |
| 1210 // needs to acknowledge this page. | 1207 // needs to acknowledge this page. |
| 1211 const char kKnownBackgroundPages[] = "background_pages.known"; | 1208 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1212 } // namespace prefs | 1209 } // namespace prefs |
| OLD | NEW |