| 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 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1261 // them. | 1261 // them. |
| 1262 const char kProfileInfoCache[] = "profile.info_cache"; | 1262 const char kProfileInfoCache[] = "profile.info_cache"; |
| 1263 | 1263 |
| 1264 // Boolean that specifies whether or not crash reports are sent | 1264 // Boolean that specifies whether or not crash reports are sent |
| 1265 // over the network for analysis. | 1265 // over the network for analysis. |
| 1266 #if defined(OS_ANDROID) | 1266 #if defined(OS_ANDROID) |
| 1267 const char kCrashReportingEnabled[] = | 1267 const char kCrashReportingEnabled[] = |
| 1268 "user_experience_metrics_crash.reporting_enabled"; | 1268 "user_experience_metrics_crash.reporting_enabled"; |
| 1269 #endif | 1269 #endif |
| 1270 | 1270 |
| 1271 // An enum value indicating the default value of the enable metrics reporting | |
| 1272 // checkbox shown during first-run. If it's opt-in, then the checkbox defaulted | |
| 1273 // to unchecked, if it's opt-out, then it defaulted to checked. This value is | |
| 1274 // only recorded during first-run, so older clients will not set it. The enum | |
| 1275 // used for the value is metrics::MetricsServiceClient::EnableMetricsDefault. | |
| 1276 const char kMetricsDefaultOptIn[] = "user_experience_metrics.default_opt_in"; | |
| 1277 | |
| 1278 // This is the location of a list of dictionaries of plugin stability stats. | 1271 // This is the location of a list of dictionaries of plugin stability stats. |
| 1279 const char kStabilityPluginStats[] = | 1272 const char kStabilityPluginStats[] = |
| 1280 "user_experience_metrics.stability.plugin_stats2"; | 1273 "user_experience_metrics.stability.plugin_stats2"; |
| 1281 | 1274 |
| 1282 // On Chrome OS, total number of non-Chrome user process crashes | 1275 // On Chrome OS, total number of non-Chrome user process crashes |
| 1283 // since the last report. | 1276 // since the last report. |
| 1284 const char kStabilityOtherUserCrashCount[] = | 1277 const char kStabilityOtherUserCrashCount[] = |
| 1285 "user_experience_metrics.stability.other_user_crash_count"; | 1278 "user_experience_metrics.stability.other_user_crash_count"; |
| 1286 | 1279 |
| 1287 // On Chrome OS, total number of kernel crashes since the last report. | 1280 // On Chrome OS, total number of kernel crashes since the last report. |
| (...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2174 const char kMediaRouterEnableCloudServices[] = | 2167 const char kMediaRouterEnableCloudServices[] = |
| 2175 "media_router.cloudservices.enabled"; | 2168 "media_router.cloudservices.enabled"; |
| 2176 #endif // defined(GOOGLE_CHROME_BUILD) | 2169 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2177 // Whether or not the Media Router first run flow has been acknowledged by the | 2170 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2178 // user. | 2171 // user. |
| 2179 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2172 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2180 "media_router.firstrunflow.acknowledged"; | 2173 "media_router.firstrunflow.acknowledged"; |
| 2181 #endif | 2174 #endif |
| 2182 | 2175 |
| 2183 } // namespace prefs | 2176 } // namespace prefs |
| OLD | NEW |