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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 // regardless of other content settings. | 579 // regardless of other content settings. |
580 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; | 580 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; |
581 | 581 |
582 // Boolean that is true if non-sandboxed plug-ins should be blocked. | 582 // Boolean that is true if non-sandboxed plug-ins should be blocked. |
583 const char kBlockNonsandboxedPlugins[] = "profile.block_nonsandboxed_plugins"; | 583 const char kBlockNonsandboxedPlugins[] = "profile.block_nonsandboxed_plugins"; |
584 | 584 |
585 // Boolean that is true when all locally stored site data (e.g. cookies, local | 585 // Boolean that is true when all locally stored site data (e.g. cookies, local |
586 // storage, etc..) should be deleted on exit. | 586 // storage, etc..) should be deleted on exit. |
587 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; | 587 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; |
588 | 588 |
589 // Boolean that is true when plug-in locally stored data ("Flash cookies") | |
590 // should be deleted on exit. | |
591 const char kClearPluginLSODataOnExit[] = | |
592 "profile.clear_plugin_lso_data_on_exit"; | |
593 | |
594 // Double that indicates the default zoom level. | 589 // Double that indicates the default zoom level. |
595 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; | 590 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; |
596 | 591 |
597 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will | 592 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will |
598 // be displayed at the default zoom level. | 593 // be displayed at the default zoom level. |
599 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; | 594 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; |
600 | 595 |
601 // Boolean that is true if AutoFill is enabled and allowed to save profile data. | 596 // Boolean that is true if AutoFill is enabled and allowed to save profile data. |
602 const char kAutoFillEnabled[] = "autofill.enabled"; | 597 const char kAutoFillEnabled[] = "autofill.enabled"; |
603 | 598 |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1162 const char kManagedDefaultPluginsSetting[] = | 1157 const char kManagedDefaultPluginsSetting[] = |
1163 "profile.managed_default_content_settings.plugins"; | 1158 "profile.managed_default_content_settings.plugins"; |
1164 const char kManagedDefaultPopupsSetting[] = | 1159 const char kManagedDefaultPopupsSetting[] = |
1165 "profile.managed_default_content_settings.popups"; | 1160 "profile.managed_default_content_settings.popups"; |
1166 | 1161 |
1167 // Dictionary for storing the set of known background pages (keys are extension | 1162 // Dictionary for storing the set of known background pages (keys are extension |
1168 // IDs of background page owners, value is a boolean that is true if the user | 1163 // IDs of background page owners, value is a boolean that is true if the user |
1169 // needs to acknowledge this page. | 1164 // needs to acknowledge this page. |
1170 const char kKnownBackgroundPages[] = "background_pages.known"; | 1165 const char kKnownBackgroundPages[] = "background_pages.known"; |
1171 } // namespace prefs | 1166 } // namespace prefs |
OLD | NEW |