| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 | 914 |
| 915 // Clear Browsing Data dialog preferences. | 915 // Clear Browsing Data dialog preferences. |
| 916 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; | 916 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; |
| 917 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; | 917 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; |
| 918 const char kDeleteCache[] = "browser.clear_data.cache"; | 918 const char kDeleteCache[] = "browser.clear_data.cache"; |
| 919 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 919 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
| 920 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 920 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
| 921 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 921 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
| 922 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; | 922 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; |
| 923 const char kDeleteMediaLicenses[] = "browser.clear_data.media_licenses"; | 923 const char kDeleteMediaLicenses[] = "browser.clear_data.media_licenses"; |
| 924 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | |
| 925 const char kLastClearBrowsingDataTime[] = | 924 const char kLastClearBrowsingDataTime[] = |
| 926 "browser.last_clear_browsing_data_time"; | 925 "browser.last_clear_browsing_data_time"; |
| 927 const char kClearBrowsingDataHistoryNoticeShownTimes[] = | 926 const char kClearBrowsingDataHistoryNoticeShownTimes[] = |
| 928 "browser.clear_data.history_notice_shown_times"; | 927 "browser.clear_data.history_notice_shown_times"; |
| 929 | 928 |
| 930 // Boolean pref to define the default values for using spellchecker. | 929 // Boolean pref to define the default values for using spellchecker. |
| 931 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; | 930 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; |
| 932 | 931 |
| 933 // Boolean pref to define the default setting for "block offensive words". | 932 // Boolean pref to define the default setting for "block offensive words". |
| 934 // The old key value is kept to avoid unnecessary migration code. | 933 // The old key value is kept to avoid unnecessary migration code. |
| (...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2256 #endif | 2255 #endif |
| 2257 | 2256 |
| 2258 // The base64-encoded representation of the public key to use to validate origin | 2257 // The base64-encoded representation of the public key to use to validate origin |
| 2259 // trial token signatures. | 2258 // trial token signatures. |
| 2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2259 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2261 | 2260 |
| 2262 // A list of origin trial features to disable by policy. | 2261 // A list of origin trial features to disable by policy. |
| 2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2262 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2264 | 2263 |
| 2265 } // namespace prefs | 2264 } // namespace prefs |
| OLD | NEW |