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 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 | 920 |
921 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 921 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
922 // Whether the "Click here to clear your browsing data" tooltip promo has been | 922 // Whether the "Click here to clear your browsing data" tooltip promo has been |
923 // shown on the Material Design History page. | 923 // shown on the Material Design History page. |
924 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown"; | 924 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown"; |
925 #endif | 925 #endif |
926 | 926 |
927 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 927 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
928 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; | 928 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; |
929 | 929 |
930 // Integer controlling whether Restrict Mode (moderate/strict) is mandatory on | 930 // Boolean controlling whether Safety Mode is mandatory on YouTube. |
931 // YouTube. See |safe_search_util::YouTubeRestrictMode| for possible values. | 931 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode"; |
932 const char kForceYouTubeRestrict[] = "settings.force_youtube_restrict"; | |
933 | 932 |
934 // Boolean controlling whether history is recorded via Session Sync | 933 // Boolean controlling whether history is recorded via Session Sync |
935 // (for supervised users). | 934 // (for supervised users). |
936 const char kForceSessionSync[] = "settings.history_recorded"; | 935 const char kForceSessionSync[] = "settings.history_recorded"; |
937 | 936 |
938 // Comma separated list of domain names (e.g. "google.com,school.edu"). | 937 // Comma separated list of domain names (e.g. "google.com,school.edu"). |
939 // When this pref is set, the user will be able to access Google Apps | 938 // When this pref is set, the user will be able to access Google Apps |
940 // only using an account that belongs to one of the domains from this pref. | 939 // only using an account that belongs to one of the domains from this pref. |
941 const char kAllowedDomainsForApps[] = "settings.allowed_domains_for_apps"; | 940 const char kAllowedDomainsForApps[] = "settings.allowed_domains_for_apps"; |
942 | 941 |
(...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2259 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2260 | 2259 |
2261 // A list of origin trial features to disable by policy. | 2260 // A list of origin trial features to disable by policy. |
2262 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2263 | 2262 |
2264 // Policy that indicates the state of updates for the binary components. | 2263 // Policy that indicates the state of updates for the binary components. |
2265 const char kComponentUpdatesEnabled[] = | 2264 const char kComponentUpdatesEnabled[] = |
2266 "component_updates.component_updates_enabled"; | 2265 "component_updates.component_updates_enabled"; |
2267 | 2266 |
2268 } // namespace prefs | 2267 } // namespace prefs |
OLD | NEW |