| 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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1234 const char kProfileInfoCache[] = "profile.info_cache"; | 1234 const char kProfileInfoCache[] = "profile.info_cache"; |
| 1235 | 1235 |
| 1236 // Dictionary that maps profile keys to strings that indicate that the profile | 1236 // Dictionary that maps profile keys to strings that indicate that the profile |
| 1237 // reset prompt has already been shown to the corresponding user (profile). | 1237 // reset prompt has already been shown to the corresponding user (profile). |
| 1238 // This is semantically similar to kProfileResetPromptMementoInProfilePrefs, see | 1238 // This is semantically similar to kProfileResetPromptMementoInProfilePrefs, see |
| 1239 // chrome/browser/profile_resetter/automatic_profile_resetter_mementos.h for an | 1239 // chrome/browser/profile_resetter/automatic_profile_resetter_mementos.h for an |
| 1240 // explanation of why this redundancy is needed. | 1240 // explanation of why this redundancy is needed. |
| 1241 const char kProfileResetPromptMementosInLocalState[] = | 1241 const char kProfileResetPromptMementosInLocalState[] = |
| 1242 "profile.reset_prompt_mementos"; | 1242 "profile.reset_prompt_mementos"; |
| 1243 | 1243 |
| 1244 // Prefs for SSLConfigServicePref. | |
| 1245 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | |
| 1246 const char kCertRevocationCheckingRequiredLocalAnchors[] = | |
| 1247 "ssl.rev_checking.required_for_local_anchors"; | |
| 1248 const char kSSLVersionMin[] = "ssl.version_min"; | |
| 1249 const char kSSLVersionMax[] = "ssl.version_max"; | |
| 1250 const char kSSLVersionFallbackMin[] = "ssl.version_fallback_min"; | |
| 1251 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | |
| 1252 | |
| 1253 // Boolean that specifies whether or not crash reports are sent | 1244 // Boolean that specifies whether or not crash reports are sent |
| 1254 // over the network for analysis. | 1245 // over the network for analysis. |
| 1255 #if defined(OS_ANDROID) | 1246 #if defined(OS_ANDROID) |
| 1256 const char kCrashReportingEnabled[] = | 1247 const char kCrashReportingEnabled[] = |
| 1257 "user_experience_metrics_crash.reporting_enabled"; | 1248 "user_experience_metrics_crash.reporting_enabled"; |
| 1258 #endif | 1249 #endif |
| 1259 | 1250 |
| 1260 // This is the location of a list of dictionaries of plugin stability stats. | 1251 // This is the location of a list of dictionaries of plugin stability stats. |
| 1261 const char kStabilityPluginStats[] = | 1252 const char kStabilityPluginStats[] = |
| 1262 "user_experience_metrics.stability.plugin_stats2"; | 1253 "user_experience_metrics.stability.plugin_stats2"; |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2194 "supervised_users.whitelists"; | 2185 "supervised_users.whitelists"; |
| 2195 | 2186 |
| 2196 #if defined(ENABLE_EXTENSIONS) | 2187 #if defined(ENABLE_EXTENSIONS) |
| 2197 // Policy that indicates how to handle animated images. | 2188 // Policy that indicates how to handle animated images. |
| 2198 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2199 #endif | 2190 #endif |
| 2200 | 2191 |
| 2201 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2202 | 2193 |
| 2203 } // namespace prefs | 2194 } // namespace prefs |
| OLD | NEW |