| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 // separated with comma punctuation mark. | 435 // separated with comma punctuation mark. |
| 436 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 436 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
| 437 | 437 |
| 438 // Clear Browsing Data dialog preferences. | 438 // Clear Browsing Data dialog preferences. |
| 439 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 439 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
| 440 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 440 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 441 const char kDeleteCache[] = "browser.clear_data.cache"; | 441 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 442 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 442 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 443 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 443 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 444 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 444 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 445 const char kDeleteLSOData[] = "browser.clear_data.lso_data"; |
| 445 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 446 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
| 446 | 447 |
| 448 // Whether there is a Flash version installed that supports clearing LSO data. |
| 449 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 450 |
| 447 // Boolean pref to define the default values for using spellchecker. | 451 // Boolean pref to define the default values for using spellchecker. |
| 448 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; | 452 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; |
| 449 | 453 |
| 450 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). | 454 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). |
| 451 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; | 455 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; |
| 452 | 456 |
| 453 // Boolean pref to define the default values for using auto spell correct. | 457 // Boolean pref to define the default values for using auto spell correct. |
| 454 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; | 458 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; |
| 455 | 459 |
| 456 // Boolean controlling whether history saving is disabled. | 460 // Boolean controlling whether history saving is disabled. |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 const char kManagedDefaultPluginsSetting[] = | 1122 const char kManagedDefaultPluginsSetting[] = |
| 1119 "profile.managed_default_content_settings.plugins"; | 1123 "profile.managed_default_content_settings.plugins"; |
| 1120 const char kManagedDefaultPopupsSetting[] = | 1124 const char kManagedDefaultPopupsSetting[] = |
| 1121 "profile.managed_default_content_settings.popups"; | 1125 "profile.managed_default_content_settings.popups"; |
| 1122 | 1126 |
| 1123 // Dictionary for storing the set of known background pages (keys are extension | 1127 // Dictionary for storing the set of known background pages (keys are extension |
| 1124 // IDs of background page owners, value is a boolean that is true if the user | 1128 // IDs of background page owners, value is a boolean that is true if the user |
| 1125 // needs to acknowledge this page. | 1129 // needs to acknowledge this page. |
| 1126 const char kKnownBackgroundPages[] = "background_pages.known"; | 1130 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1127 } // namespace prefs | 1131 } // namespace prefs |
| OLD | NEW |