| 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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; | 316 const char kWebKitJavascriptEnabled[] = "webkit.webprefs.javascript_enabled"; |
| 317 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = | 317 const char kWebKitJavascriptCanOpenWindowsAutomatically[] = |
| 318 "webkit.webprefs.javascript_can_open_windows_automatically"; | 318 "webkit.webprefs.javascript_can_open_windows_automatically"; |
| 319 const char kWebKitLoadsImagesAutomatically[] = | 319 const char kWebKitLoadsImagesAutomatically[] = |
| 320 "webkit.webprefs.loads_images_automatically"; | 320 "webkit.webprefs.loads_images_automatically"; |
| 321 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; | 321 const char kWebKitPluginsEnabled[] = "webkit.webprefs.plugins_enabled"; |
| 322 | 322 |
| 323 // Boolean that is true when SafeBrowsing is enabled. | 323 // Boolean that is true when SafeBrowsing is enabled. |
| 324 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 324 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
| 325 | 325 |
| 326 // Boolean that tell us whether malicious download feedback is enabled. | 326 // Boolean that tell us whether Safe Browsing extended reporting is enabled. |
| 327 const char kSafeBrowsingExtendedReportingEnabled[] = | 327 const char kSafeBrowsingExtendedReportingEnabled[] = |
| 328 "safebrowsing.extended_reporting_enabled"; | 328 "safebrowsing.extended_reporting_enabled"; |
| 329 | 329 |
| 330 // Boolean that tell us whether malicious download feedback is enabled. | |
| 331 // TODO(felt): Deprecate. crbug.com/383866 | |
| 332 const char kSafeBrowsingDownloadFeedbackEnabled[] = | |
| 333 "safebrowsing.download_feedback_enabled"; | |
| 334 | |
| 335 // Boolean that is true when SafeBrowsing Malware Report is enabled. | |
| 336 // TODO(felt): Deprecate. crbug.com/383866 | |
| 337 const char kSafeBrowsingReportingEnabled[] = | |
| 338 "safebrowsing.reporting_enabled"; | |
| 339 | |
| 340 // Boolean that is true when the SafeBrowsing interstitial should not allow | 330 // Boolean that is true when the SafeBrowsing interstitial should not allow |
| 341 // users to proceed anyway. | 331 // users to proceed anyway. |
| 342 const char kSafeBrowsingProceedAnywayDisabled[] = | 332 const char kSafeBrowsingProceedAnywayDisabled[] = |
| 343 "safebrowsing.proceed_anyway_disabled"; | 333 "safebrowsing.proceed_anyway_disabled"; |
| 344 | 334 |
| 345 // Boolean that is true when SafeBrowsing has sent an incident report. | 335 // Boolean that is true when SafeBrowsing has sent an incident report. |
| 346 const char kSafeBrowsingIncidentReportSent[] = | 336 const char kSafeBrowsingIncidentReportSent[] = |
| 347 "safebrowsing.incident_report_sent"; | 337 "safebrowsing.incident_report_sent"; |
| 348 | 338 |
| 349 // A dictionary mapping incident types to a dict of incident key:digest pairs. | 339 // A dictionary mapping incident types to a dict of incident key:digest pairs. |
| (...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2328 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2318 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2329 #endif | 2319 #endif |
| 2330 | 2320 |
| 2331 // Whether DNS Quick Check is disabled in proxy resolution. | 2321 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2332 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2333 | 2323 |
| 2334 // Whether Guest Mode is enabled within the browser. | 2324 // Whether Guest Mode is enabled within the browser. |
| 2335 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2336 | 2326 |
| 2337 } // namespace prefs | 2327 } // namespace prefs |
| OLD | NEW |