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 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 | |
|
Alexei Svitkine (slow)
2013/12/13 22:37:22
Nit: Remove extra blank line.
rkaplow
2013/12/13 23:54:03
Done.
| |
| 1513 | |
| 1509 // The keys below are used for the dictionaries in the | 1514 // The keys below are used for the dictionaries in the |
| 1510 // kStabilityPluginStats list. | 1515 // kStabilityPluginStats list. |
| 1511 const char kStabilityPluginName[] = "name"; | 1516 const char kStabilityPluginName[] = "name"; |
| 1512 const char kStabilityPluginLaunches[] = "launches"; | 1517 const char kStabilityPluginLaunches[] = "launches"; |
| 1513 const char kStabilityPluginInstances[] = "instances"; | 1518 const char kStabilityPluginInstances[] = "instances"; |
| 1514 const char kStabilityPluginCrashes[] = "crashes"; | 1519 const char kStabilityPluginCrashes[] = "crashes"; |
| 1515 const char kStabilityPluginLoadingErrors[] = "loading_errors"; | 1520 const char kStabilityPluginLoadingErrors[] = "loading_errors"; |
| 1516 | 1521 |
| 1517 // The keys below are strictly increasing counters over the lifetime of | 1522 // The keys below are strictly increasing counters over the lifetime of |
| 1518 // a chrome installation. They are (optionally) sent up to the uninstall | 1523 // 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) | 2672 #if defined(OS_WIN) |
| 2668 // Whether the password was blank, only valid if OS password was last changed | 2673 // Whether the password was blank, only valid if OS password was last changed |
| 2669 // on or before the value contained in kOsPasswordLastChanged. | 2674 // on or before the value contained in kOsPasswordLastChanged. |
| 2670 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2675 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
| 2671 | 2676 |
| 2672 // The number of seconds since epoch that the OS password was last changed. | 2677 // The number of seconds since epoch that the OS password was last changed. |
| 2673 const char kOsPasswordLastChanged[] = | 2678 const char kOsPasswordLastChanged[] = |
| 2674 "password_manager.os_password_last_changed"; | 2679 "password_manager.os_password_last_changed"; |
| 2675 #endif | 2680 #endif |
| 2676 } // namespace prefs | 2681 } // namespace prefs |
| OLD | NEW |