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 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
873 const char kDeleteCache[] = "browser.clear_data.cache"; | 873 const char kDeleteCache[] = "browser.clear_data.cache"; |
874 const char kDeleteCookies[] = "browser.clear_data.cookies"; | 874 const char kDeleteCookies[] = "browser.clear_data.cookies"; |
875 const char kDeletePasswords[] = "browser.clear_data.passwords"; | 875 const char kDeletePasswords[] = "browser.clear_data.passwords"; |
876 const char kDeleteFormData[] = "browser.clear_data.form_data"; | 876 const char kDeleteFormData[] = "browser.clear_data.form_data"; |
877 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; | 877 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; |
878 const char kDeauthorizeContentLicenses[] = | 878 const char kDeauthorizeContentLicenses[] = |
879 "browser.clear_data.content_licenses"; | 879 "browser.clear_data.content_licenses"; |
880 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; | 880 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; |
881 const char kLastClearBrowsingDataTime[] = | 881 const char kLastClearBrowsingDataTime[] = |
882 "browser.last_clear_browsing_data_time"; | 882 "browser.last_clear_browsing_data_time"; |
| 883 const char kClearBrowsingDataHistoryNoticeShownTimes[] = |
| 884 "browser.clear_data.history_notice_shown_times"; |
883 | 885 |
884 // Boolean pref to define the default values for using spellchecker. | 886 // Boolean pref to define the default values for using spellchecker. |
885 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; | 887 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; |
886 | 888 |
887 // Boolean pref to define the default setting for "block offensive words". | 889 // Boolean pref to define the default setting for "block offensive words". |
888 // The old key value is kept to avoid unnecessary migration code. | 890 // The old key value is kept to avoid unnecessary migration code. |
889 const char kSpeechRecognitionFilterProfanities[] = | 891 const char kSpeechRecognitionFilterProfanities[] = |
890 "browser.speechinput_censor_results"; | 892 "browser.speechinput_censor_results"; |
891 | 893 |
892 // Boolean controlling whether history saving is disabled. | 894 // Boolean controlling whether history saving is disabled. |
(...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2188 const char kMediaRouterEnableCloudServices[] = | 2190 const char kMediaRouterEnableCloudServices[] = |
2189 "media_router.cloudservices.enabled"; | 2191 "media_router.cloudservices.enabled"; |
2190 #endif // defined(GOOGLE_CHROME_BUILD) | 2192 #endif // defined(GOOGLE_CHROME_BUILD) |
2191 // Whether or not the Media Router first run flow has been acknowledged by the | 2193 // Whether or not the Media Router first run flow has been acknowledged by the |
2192 // user. | 2194 // user. |
2193 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2195 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2194 "media_router.firstrunflow.acknowledged"; | 2196 "media_router.firstrunflow.acknowledged"; |
2195 #endif | 2197 #endif |
2196 | 2198 |
2197 } // namespace prefs | 2199 } // namespace prefs |
OLD | NEW |