| 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 // Boolean controlling whether history saving is disabled. | 935 // Boolean controlling whether history saving is disabled. |
| 936 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 936 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 937 | 937 |
| 938 // Boolean controlling whether deleting browsing and download history is | 938 // Boolean controlling whether deleting browsing and download history is |
| 939 // permitted. | 939 // permitted. |
| 940 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 940 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
| 941 | 941 |
| 942 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 942 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
| 943 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; | 943 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; |
| 944 | 944 |
| 945 // Boolean controlling whether Safety Mode is mandatory on YouTube. | 945 // Integer controlling whether Restrict Mode (moderate/strict) is mandatory on |
| 946 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode"; | 946 // YouTube. See |safe_search_util::YouTubeRestrictMode| for possible values. |
| 947 const char kForceYouTubeRestrict[] = "settings.force_youtube_restrict"; |
| 947 | 948 |
| 948 // Boolean controlling whether history is recorded via Session Sync | 949 // Boolean controlling whether history is recorded via Session Sync |
| 949 // (for supervised users). | 950 // (for supervised users). |
| 950 const char kForceSessionSync[] = "settings.history_recorded"; | 951 const char kForceSessionSync[] = "settings.history_recorded"; |
| 951 | 952 |
| 952 // Comma separated list of domain names (e.g. "google.com,school.edu"). | 953 // Comma separated list of domain names (e.g. "google.com,school.edu"). |
| 953 // When this pref is set, the user will be able to access Google Apps | 954 // When this pref is set, the user will be able to access Google Apps |
| 954 // only using an account that belongs to one of the domains from this pref. | 955 // only using an account that belongs to one of the domains from this pref. |
| 955 const char kAllowedDomainsForApps[] = "settings.allowed_domains_for_apps"; | 956 const char kAllowedDomainsForApps[] = "settings.allowed_domains_for_apps"; |
| 956 | 957 |
| (...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2270 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2271 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2271 | 2272 |
| 2272 // A list of origin trial features to disable by policy. | 2273 // A list of origin trial features to disable by policy. |
| 2273 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2274 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2274 | 2275 |
| 2275 // Policy that indicates the state of updates for the binary components. | 2276 // Policy that indicates the state of updates for the binary components. |
| 2276 const char kComponentUpdatesEnabled[] = | 2277 const char kComponentUpdatesEnabled[] = |
| 2277 "component_updates.component_updates_enabled"; | 2278 "component_updates.component_updates_enabled"; |
| 2278 | 2279 |
| 2279 } // namespace prefs | 2280 } // namespace prefs |
| OLD | NEW |