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 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1292 // String containing the version of Chrome that the profile was created by. | 1292 // String containing the version of Chrome that the profile was created by. |
1293 // If profile was created before this feature was added, this pref will default | 1293 // If profile was created before this feature was added, this pref will default |
1294 // to "1.0.0.0". | 1294 // to "1.0.0.0". |
1295 const char kProfileCreatedByVersion[] = "profile.created_by_version"; | 1295 const char kProfileCreatedByVersion[] = "profile.created_by_version"; |
1296 | 1296 |
1297 // A map of profile data directory to cached information. This cache can be | 1297 // A map of profile data directory to cached information. This cache can be |
1298 // used to display information about profiles without actually having to load | 1298 // used to display information about profiles without actually having to load |
1299 // them. | 1299 // them. |
1300 const char kProfileInfoCache[] = "profile.info_cache"; | 1300 const char kProfileInfoCache[] = "profile.info_cache"; |
1301 | 1301 |
1302 // Boolean that specifies whether or not crash reports are sent | 1302 // Deprecated preference for metric / crash reporting on Android. Use |
1303 // over the network for analysis. | 1303 // kMetricsReportingEnabled instead. |
1304 #if defined(OS_ANDROID) | 1304 #if BUILDFLAG(ANDROID_JAVA_UI) |
1305 const char kCrashReportingEnabled[] = | 1305 const char kCrashReportingEnabled[] = |
1306 "user_experience_metrics_crash.reporting_enabled"; | 1306 "user_experience_metrics_crash.reporting_enabled"; |
1307 #endif | 1307 #endif |
1308 | 1308 |
1309 // This is the location of a list of dictionaries of plugin stability stats. | 1309 // This is the location of a list of dictionaries of plugin stability stats. |
1310 const char kStabilityPluginStats[] = | 1310 const char kStabilityPluginStats[] = |
1311 "user_experience_metrics.stability.plugin_stats2"; | 1311 "user_experience_metrics.stability.plugin_stats2"; |
1312 | 1312 |
1313 // On Chrome OS, total number of non-Chrome user process crashes | 1313 // On Chrome OS, total number of non-Chrome user process crashes |
1314 // since the last report. | 1314 // since the last report. |
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2252 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2252 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2253 | 2253 |
2254 // A list of origin trial features to disable by policy. | 2254 // A list of origin trial features to disable by policy. |
2255 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2255 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2256 | 2256 |
2257 // Policy that indicates the state of updates for the binary components. | 2257 // Policy that indicates the state of updates for the binary components. |
2258 const char kComponentUpdatesEnabled[] = | 2258 const char kComponentUpdatesEnabled[] = |
2259 "component_updates.component_updates_enabled"; | 2259 "component_updates.component_updates_enabled"; |
2260 | 2260 |
2261 } // namespace prefs | 2261 } // namespace prefs |
OLD | NEW |