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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 // Integer containing the default Geolocation content setting. | 685 // Integer containing the default Geolocation content setting. |
686 const char kGeolocationDefaultContentSetting[] = | 686 const char kGeolocationDefaultContentSetting[] = |
687 "geolocation.default_content_setting"; | 687 "geolocation.default_content_setting"; |
688 | 688 |
689 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. | 689 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. |
690 const char kGeolocationContentSettings[] = "geolocation.content_settings"; | 690 const char kGeolocationContentSettings[] = "geolocation.content_settings"; |
691 | 691 |
692 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 692 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
693 const char kDisable3DAPIs[] = "disable_3d_apis"; | 693 const char kDisable3DAPIs[] = "disable_3d_apis"; |
694 | 694 |
| 695 // Whether to enable hyperlink auditing ("<a ping>"). |
| 696 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
| 697 |
| 698 // Whether to enable sending referrers. |
| 699 const char kEnableReferrers[] = "enable_referrers"; |
| 700 |
695 // *************** LOCAL STATE *************** | 701 // *************** LOCAL STATE *************** |
696 // These are attached to the machine/installation | 702 // These are attached to the machine/installation |
697 | 703 |
698 // Prefs for SSLConfigServicePref. | 704 // Prefs for SSLConfigServicePref. |
699 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 705 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
700 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 706 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
701 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 707 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
702 | 708 |
703 // The metrics client GUID and session ID. | 709 // The metrics client GUID and session ID. |
704 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 710 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1279 "profile.managed_popups_blocked_for_urls"; | 1285 "profile.managed_popups_blocked_for_urls"; |
1280 | 1286 |
1281 // Dictionary for storing the set of known background pages (keys are extension | 1287 // Dictionary for storing the set of known background pages (keys are extension |
1282 // IDs of background page owners, value is a boolean that is true if the user | 1288 // IDs of background page owners, value is a boolean that is true if the user |
1283 // needs to acknowledge this page. | 1289 // needs to acknowledge this page. |
1284 const char kKnownBackgroundPages[] = "background_pages.known"; | 1290 const char kKnownBackgroundPages[] = "background_pages.known"; |
1285 | 1291 |
1286 // Dictionary that maps URL schemes (protocols) to URL handlers. | 1292 // Dictionary that maps URL schemes (protocols) to URL handlers. |
1287 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; | 1293 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
1288 } // namespace prefs | 1294 } // namespace prefs |
OLD | NEW |