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