| 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 const char kSpeechRecognitionFilterProfanities[] = | 913 const char kSpeechRecognitionFilterProfanities[] = |
| 914 "browser.speechinput_censor_results"; | 914 "browser.speechinput_censor_results"; |
| 915 | 915 |
| 916 // Boolean controlling whether history saving is disabled. | 916 // Boolean controlling whether history saving is disabled. |
| 917 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 917 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 918 | 918 |
| 919 // Boolean controlling whether deleting browsing and download history is | 919 // Boolean controlling whether deleting browsing and download history is |
| 920 // permitted. | 920 // permitted. |
| 921 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 921 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
| 922 | 922 |
| 923 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 924 // Whether the "Click here to clear your browsing data" tooltip promo has been |
| 925 // shown on the Material Design History page. |
| 926 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown"; |
| 927 #endif |
| 928 |
| 923 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 929 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
| 924 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; | 930 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; |
| 925 | 931 |
| 926 // Boolean controlling whether Safety Mode is mandatory on YouTube. | 932 // Boolean controlling whether Safety Mode is mandatory on YouTube. |
| 927 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode"; | 933 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode"; |
| 928 | 934 |
| 929 // Boolean controlling whether history is recorded via Session Sync | 935 // Boolean controlling whether history is recorded via Session Sync |
| 930 // (for supervised users). | 936 // (for supervised users). |
| 931 const char kForceSessionSync[] = "settings.history_recorded"; | 937 const char kForceSessionSync[] = "settings.history_recorded"; |
| 932 | 938 |
| (...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2257 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2252 | 2258 |
| 2253 // A list of origin trial features to disable by policy. | 2259 // A list of origin trial features to disable by policy. |
| 2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2260 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2255 | 2261 |
| 2256 // Policy that indicates the state of updates for the binary components. | 2262 // Policy that indicates the state of updates for the binary components. |
| 2257 const char kComponentUpdatesEnabled[] = | 2263 const char kComponentUpdatesEnabled[] = |
| 2258 "component_updates.component_updates_enabled"; | 2264 "component_updates.component_updates_enabled"; |
| 2259 | 2265 |
| 2260 } // namespace prefs | 2266 } // namespace prefs |
| OLD | NEW |