| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 const char kProfileInfoCache[] = "profile.info_cache"; | 1231 const char kProfileInfoCache[] = "profile.info_cache"; |
| 1232 | 1232 |
| 1233 // Dictionary that maps profile keys to strings that indicate that the profile | 1233 // Dictionary that maps profile keys to strings that indicate that the profile |
| 1234 // reset prompt has already been shown to the corresponding user (profile). | 1234 // reset prompt has already been shown to the corresponding user (profile). |
| 1235 // This is semantically similar to kProfileResetPromptMementoInProfilePrefs, see | 1235 // This is semantically similar to kProfileResetPromptMementoInProfilePrefs, see |
| 1236 // chrome/browser/profile_resetter/automatic_profile_resetter_mementos.h for an | 1236 // chrome/browser/profile_resetter/automatic_profile_resetter_mementos.h for an |
| 1237 // explanation of why this redundancy is needed. | 1237 // explanation of why this redundancy is needed. |
| 1238 const char kProfileResetPromptMementosInLocalState[] = | 1238 const char kProfileResetPromptMementosInLocalState[] = |
| 1239 "profile.reset_prompt_mementos"; | 1239 "profile.reset_prompt_mementos"; |
| 1240 | 1240 |
| 1241 // Prefs for SSLConfigServicePref. | |
| 1242 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | |
| 1243 const char kCertRevocationCheckingRequiredLocalAnchors[] = | |
| 1244 "ssl.rev_checking.required_for_local_anchors"; | |
| 1245 const char kSSLVersionMin[] = "ssl.version_min"; | |
| 1246 const char kSSLVersionMax[] = "ssl.version_max"; | |
| 1247 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; | |
| 1248 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | |
| 1249 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; | |
| 1250 | |
| 1251 // Boolean that specifies whether or not crash reporting and metrics reporting | 1241 // Boolean that specifies whether or not crash reporting and metrics reporting |
| 1252 // are sent over the network for analysis. | 1242 // are sent over the network for analysis. |
| 1253 const char kMetricsReportingEnabled[] = | 1243 const char kMetricsReportingEnabled[] = |
| 1254 "user_experience_metrics.reporting_enabled"; | 1244 "user_experience_metrics.reporting_enabled"; |
| 1255 | 1245 |
| 1256 // Boolean that specifies whether or not crash reports are sent | 1246 // Boolean that specifies whether or not crash reports are sent |
| 1257 // over the network for analysis. | 1247 // over the network for analysis. |
| 1258 #if defined(OS_ANDROID) | 1248 #if defined(OS_ANDROID) |
| 1259 const char kCrashReportingEnabled[] = | 1249 const char kCrashReportingEnabled[] = |
| 1260 "user_experience_metrics_crash.reporting_enabled"; | 1250 "user_experience_metrics_crash.reporting_enabled"; |
| (...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2217 "supervised_users.whitelists"; | 2207 "supervised_users.whitelists"; |
| 2218 | 2208 |
| 2219 #if defined(ENABLE_EXTENSIONS) | 2209 #if defined(ENABLE_EXTENSIONS) |
| 2220 // Policy that indicates how to handle animated images. | 2210 // Policy that indicates how to handle animated images. |
| 2221 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2211 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2222 #endif | 2212 #endif |
| 2223 | 2213 |
| 2224 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2214 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2225 | 2215 |
| 2226 } // namespace prefs | 2216 } // namespace prefs |
| OLD | NEW |