Chromium Code Reviews| 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 kMetricsCloneDetected[] = "user_experience_metrics.clone_detected"; | |
|
Alexei Svitkine (slow)
2014/03/26 21:34:50
Hmm, I think it would be better to use a name to d
jwd
2014/03/28 16:23:49
Done.
| |
| 1389 | |
| 1386 // Boolean that specifies whether or not crash reports are sent | 1390 // Boolean that specifies whether or not crash reports are sent |
| 1387 // over the network for analysis. | 1391 // over the network for analysis. |
| 1388 #if defined(OS_ANDROID) | 1392 #if defined(OS_ANDROID) |
| 1389 const char kCrashReportingEnabled[] = | 1393 const char kCrashReportingEnabled[] = |
| 1390 "user_experience_metrics_crash.reporting_enabled"; | 1394 "user_experience_metrics_crash.reporting_enabled"; |
| 1391 #endif | 1395 #endif |
| 1392 | 1396 |
| 1393 // Array of strings that are each UMA logs that were supposed to be sent in the | 1397 // 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 | 1398 // first minute of a browser session. These logs include things like crash count |
| 1395 // info, etc. | 1399 // 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 | 2598 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2595 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2599 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2596 // title or an empty string if the bookmark node was removed. | 2600 // title or an empty string if the bookmark node was removed. |
| 2597 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2601 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2598 #endif | 2602 #endif |
| 2599 | 2603 |
| 2600 // Whether DNS Quick Check is disabled in proxy resolution. | 2604 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2601 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2605 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2602 | 2606 |
| 2603 } // namespace prefs | 2607 } // namespace prefs |
| OLD | NEW |