| 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 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 "user_experience_metrics.stability.breakpad_registration_fail"; | 1499 "user_experience_metrics.stability.breakpad_registration_fail"; |
| 1500 | 1500 |
| 1501 // Number of times the browser has been run under a debugger. | 1501 // Number of times the browser has been run under a debugger. |
| 1502 const char kStabilityDebuggerPresent[] = | 1502 const char kStabilityDebuggerPresent[] = |
| 1503 "user_experience_metrics.stability.debugger_present"; | 1503 "user_experience_metrics.stability.debugger_present"; |
| 1504 | 1504 |
| 1505 // Number of times the browser has not been run under a debugger. | 1505 // Number of times the browser has not been run under a debugger. |
| 1506 const char kStabilityDebuggerNotPresent[] = | 1506 const char kStabilityDebuggerNotPresent[] = |
| 1507 "user_experience_metrics.stability.debugger_not_present"; | 1507 "user_experience_metrics.stability.debugger_not_present"; |
| 1508 | 1508 |
| 1509 // Number of times the GPU process crashed since the last report. |
| 1510 const char kStabilityGpuCrashCount[] = |
| 1511 "user_experience_metrics.stability.gpu_crash_count"; |
| 1512 |
| 1509 // The keys below are used for the dictionaries in the | 1513 // The keys below are used for the dictionaries in the |
| 1510 // kStabilityPluginStats list. | 1514 // kStabilityPluginStats list. |
| 1511 const char kStabilityPluginName[] = "name"; | 1515 const char kStabilityPluginName[] = "name"; |
| 1512 const char kStabilityPluginLaunches[] = "launches"; | 1516 const char kStabilityPluginLaunches[] = "launches"; |
| 1513 const char kStabilityPluginInstances[] = "instances"; | 1517 const char kStabilityPluginInstances[] = "instances"; |
| 1514 const char kStabilityPluginCrashes[] = "crashes"; | 1518 const char kStabilityPluginCrashes[] = "crashes"; |
| 1515 const char kStabilityPluginLoadingErrors[] = "loading_errors"; | 1519 const char kStabilityPluginLoadingErrors[] = "loading_errors"; |
| 1516 | 1520 |
| 1517 // The keys below are strictly increasing counters over the lifetime of | 1521 // The keys below are strictly increasing counters over the lifetime of |
| 1518 // a chrome installation. They are (optionally) sent up to the uninstall | 1522 // a chrome installation. They are (optionally) sent up to the uninstall |
| (...skipping 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2667 #if defined(OS_WIN) | 2671 #if defined(OS_WIN) |
| 2668 // Whether the password was blank, only valid if OS password was last changed | 2672 // Whether the password was blank, only valid if OS password was last changed |
| 2669 // on or before the value contained in kOsPasswordLastChanged. | 2673 // on or before the value contained in kOsPasswordLastChanged. |
| 2670 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2674 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
| 2671 | 2675 |
| 2672 // The number of seconds since epoch that the OS password was last changed. | 2676 // The number of seconds since epoch that the OS password was last changed. |
| 2673 const char kOsPasswordLastChanged[] = | 2677 const char kOsPasswordLastChanged[] = |
| 2674 "password_manager.os_password_last_changed"; | 2678 "password_manager.os_password_last_changed"; |
| 2675 #endif | 2679 #endif |
| 2676 } // namespace prefs | 2680 } // namespace prefs |
| OLD | NEW |