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/features.h" | 9 #include "chrome/common/features.h" |
10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 const char kSpeechRecognitionFilterProfanities[] = | 1005 const char kSpeechRecognitionFilterProfanities[] = |
1006 "browser.speechinput_censor_results"; | 1006 "browser.speechinput_censor_results"; |
1007 | 1007 |
1008 // Boolean controlling whether history saving is disabled. | 1008 // Boolean controlling whether history saving is disabled. |
1009 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 1009 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
1010 | 1010 |
1011 // Boolean controlling whether deleting browsing and download history is | 1011 // Boolean controlling whether deleting browsing and download history is |
1012 // permitted. | 1012 // permitted. |
1013 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 1013 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
1014 | 1014 |
1015 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 1015 #if !defined(OS_ANDROID) |
1016 // Whether the "Click here to clear your browsing data" tooltip promo has been | 1016 // Whether the "Click here to clear your browsing data" tooltip promo has been |
1017 // shown on the Material Design History page. | 1017 // shown on the Material Design History page. |
1018 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown"; | 1018 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown"; |
1019 #endif | 1019 #endif |
1020 | 1020 |
1021 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 1021 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
1022 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; | 1022 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; |
1023 | 1023 |
1024 // Integer controlling whether Restrict Mode (moderate/strict) is mandatory on | 1024 // Integer controlling whether Restrict Mode (moderate/strict) is mandatory on |
1025 // YouTube. See |safe_search_util::YouTubeRestrictMode| for possible values. | 1025 // YouTube. See |safe_search_util::YouTubeRestrictMode| for possible values. |
(...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2569 // internal format (int64) in local store. (I.e., this is not a per-profile | 2569 // internal format (int64) in local store. (I.e., this is not a per-profile |
2570 // pref.) | 2570 // pref.) |
2571 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; | 2571 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; |
2572 #endif | 2572 #endif |
2573 | 2573 |
2574 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 2574 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
2575 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; | 2575 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; |
2576 #endif | 2576 #endif |
2577 | 2577 |
2578 } // namespace prefs | 2578 } // namespace prefs |
OLD | NEW |