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 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 | 1376 |
1377 // Boolean that specifies whether or not crash reporting and metrics reporting | 1377 // Boolean that specifies whether or not crash reporting and metrics reporting |
1378 // are sent over the network for analysis. | 1378 // are sent over the network for analysis. |
1379 const char kMetricsReportingEnabled[] = | 1379 const char kMetricsReportingEnabled[] = |
1380 "user_experience_metrics.reporting_enabled"; | 1380 "user_experience_metrics.reporting_enabled"; |
1381 | 1381 |
1382 // A machine ID used to detect when underlying hardware changes. It is only | 1382 // A machine ID used to detect when underlying hardware changes. It is only |
1383 // stored locally and never transmitted in metrics reports. | 1383 // stored locally and never transmitted in metrics reports. |
1384 const char kMetricsMachineId[] = "user_experience_metrics.machine_id"; | 1384 const char kMetricsMachineId[] = "user_experience_metrics.machine_id"; |
1385 | 1385 |
| 1386 // Boolean that indicates a cloned install has been detected and the metrics |
| 1387 // client id and low entropy source should be reset. |
| 1388 const char kMetricsResetIds[] = |
| 1389 "user_experience_metrics.reset_metrics_ids"; |
| 1390 |
1386 // Boolean that specifies whether or not crash reports are sent | 1391 // Boolean that specifies whether or not crash reports are sent |
1387 // over the network for analysis. | 1392 // over the network for analysis. |
1388 #if defined(OS_ANDROID) | 1393 #if defined(OS_ANDROID) |
1389 const char kCrashReportingEnabled[] = | 1394 const char kCrashReportingEnabled[] = |
1390 "user_experience_metrics_crash.reporting_enabled"; | 1395 "user_experience_metrics_crash.reporting_enabled"; |
1391 #endif | 1396 #endif |
1392 | 1397 |
1393 // Array of strings that are each UMA logs that were supposed to be sent in the | 1398 // Array of strings that are each UMA logs that were supposed to be sent in the |
1394 // first minute of a browser session. These logs include things like crash count | 1399 // first minute of a browser session. These logs include things like crash count |
1395 // info, etc. | 1400 // info, etc. |
(...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2594 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2599 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2595 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2600 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2596 // title or an empty string if the bookmark node was removed. | 2601 // title or an empty string if the bookmark node was removed. |
2597 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2602 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2598 #endif | 2603 #endif |
2599 | 2604 |
2600 // Whether DNS Quick Check is disabled in proxy resolution. | 2605 // Whether DNS Quick Check is disabled in proxy resolution. |
2601 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2606 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2602 | 2607 |
2603 } // namespace prefs | 2608 } // namespace prefs |
OLD | NEW |