| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 // regardless of other content settings. | 551 // regardless of other content settings. |
| 552 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; | 552 const char kBlockThirdPartyCookies[] = "profile.block_third_party_cookies"; |
| 553 | 553 |
| 554 // Boolean that is true if non-sandboxed plug-ins should be blocked. | 554 // Boolean that is true if non-sandboxed plug-ins should be blocked. |
| 555 const char kBlockNonsandboxedPlugins[] = "profile.block_nonsandboxed_plugins"; | 555 const char kBlockNonsandboxedPlugins[] = "profile.block_nonsandboxed_plugins"; |
| 556 | 556 |
| 557 // Boolean that is true when all locally stored site data (e.g. cookies, local | 557 // Boolean that is true when all locally stored site data (e.g. cookies, local |
| 558 // storage, etc..) should be deleted on exit. | 558 // storage, etc..) should be deleted on exit. |
| 559 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; | 559 const char kClearSiteDataOnExit[] = "profile.clear_site_data_on_exit"; |
| 560 | 560 |
| 561 // Boolean that is true when plug-in locally stored data ("Flash cookies") |
| 562 // should be deleted on exit. |
| 563 const char kClearPluginLSODataOnExit[] = |
| 564 "profile.clear_plugin_lso_data_on_exit"; |
| 565 |
| 561 // Double that indicates the default zoom level. | 566 // Double that indicates the default zoom level. |
| 562 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; | 567 const char kDefaultZoomLevel[] = "profile.default_zoom_level"; |
| 563 | 568 |
| 564 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will | 569 // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will |
| 565 // be displayed at the default zoom level. | 570 // be displayed at the default zoom level. |
| 566 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; | 571 const char kPerHostZoomLevels[] = "profile.per_host_zoom_levels"; |
| 567 | 572 |
| 568 // Boolean that is true if AutoFill is enabled and allowed to save profile data. | 573 // Boolean that is true if AutoFill is enabled and allowed to save profile data. |
| 569 const char kAutoFillEnabled[] = "autofill.enabled"; | 574 const char kAutoFillEnabled[] = "autofill.enabled"; |
| 570 | 575 |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 const char kManagedDefaultPluginsSetting[] = | 1127 const char kManagedDefaultPluginsSetting[] = |
| 1123 "profile.managed_default_content_settings.plugins"; | 1128 "profile.managed_default_content_settings.plugins"; |
| 1124 const char kManagedDefaultPopupsSetting[] = | 1129 const char kManagedDefaultPopupsSetting[] = |
| 1125 "profile.managed_default_content_settings.popups"; | 1130 "profile.managed_default_content_settings.popups"; |
| 1126 | 1131 |
| 1127 // Dictionary for storing the set of known background pages (keys are extension | 1132 // Dictionary for storing the set of known background pages (keys are extension |
| 1128 // IDs of background page owners, value is a boolean that is true if the user | 1133 // IDs of background page owners, value is a boolean that is true if the user |
| 1129 // needs to acknowledge this page. | 1134 // needs to acknowledge this page. |
| 1130 const char kKnownBackgroundPages[] = "background_pages.known"; | 1135 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1131 } // namespace prefs | 1136 } // namespace prefs |
| OLD | NEW |