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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 // OBSOLETE. Boolean that is true if the form AutoFill is on (will record | 113 // OBSOLETE. Boolean that is true if the form AutoFill is on (will record |
114 // values entered in text inputs in forms and shows them in a popup when user | 114 // values entered in text inputs in forms and shows them in a popup when user |
115 // type in a text input with the same name later on). This has been superseded | 115 // type in a text input with the same name later on). This has been superseded |
116 // by kAutoFillEnabled. | 116 // by kAutoFillEnabled. |
117 const char kFormAutofillEnabled[] = "profile.form_autofill_enabled"; | 117 const char kFormAutofillEnabled[] = "profile.form_autofill_enabled"; |
118 | 118 |
119 // Boolean that is true when SafeBrowsing is enabled. | 119 // Boolean that is true when SafeBrowsing is enabled. |
120 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 120 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
121 | 121 |
| 122 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
| 123 const char kSafeBrowsingReportingEnabled[] = |
| 124 "safebrowsing.reporting_enabled"; |
| 125 |
122 // Boolean that is true when Suggest support is enabled. | 126 // Boolean that is true when Suggest support is enabled. |
123 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; | 127 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; |
124 | 128 |
125 // OBSOLETE. Enum that specifies whether to enforce a third-party cookie | 129 // OBSOLETE. Enum that specifies whether to enforce a third-party cookie |
126 // blocking policy. This has been superseded by kDefaultContentSettings + | 130 // blocking policy. This has been superseded by kDefaultContentSettings + |
127 // kBlockThirdPartyCookies. | 131 // kBlockThirdPartyCookies. |
128 // 0 - allow all cookies. | 132 // 0 - allow all cookies. |
129 // 1 - block third-party cookies | 133 // 1 - block third-party cookies |
130 // 2 - block all cookies | 134 // 2 - block all cookies |
131 const char kCookieBehavior[] = "security.cookie_behavior"; | 135 const char kCookieBehavior[] = "security.cookie_behavior"; |
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 // String specifying the proxy server. For a specification of the expected | 1083 // String specifying the proxy server. For a specification of the expected |
1080 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1084 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
1081 const char kProxyServer[] = "proxy.server"; | 1085 const char kProxyServer[] = "proxy.server"; |
1082 // URL to the proxy .pac file. | 1086 // URL to the proxy .pac file. |
1083 const char kProxyPacUrl[] = "proxy.pac_url"; | 1087 const char kProxyPacUrl[] = "proxy.pac_url"; |
1084 // String containing proxy bypass rules. For a specification of the | 1088 // String containing proxy bypass rules. For a specification of the |
1085 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1089 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
1086 const char kProxyBypassList[] = "proxy.bypass_list"; | 1090 const char kProxyBypassList[] = "proxy.bypass_list"; |
1087 | 1091 |
1088 } // namespace prefs | 1092 } // namespace prefs |
OLD | NEW |