| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 // report. | 742 // report. |
| 743 const char kStabilityRendererHangCount[] = | 743 const char kStabilityRendererHangCount[] = |
| 744 "user_experience_metrics.stability.renderer_hang_count"; | 744 "user_experience_metrics.stability.renderer_hang_count"; |
| 745 | 745 |
| 746 // Total number of child process crashes (other than renderer / extension | 746 // Total number of child process crashes (other than renderer / extension |
| 747 // renderer ones, and plugin children, which are counted separately) since the | 747 // renderer ones, and plugin children, which are counted separately) since the |
| 748 // last report. | 748 // last report. |
| 749 const char kStabilityChildProcessCrashCount[] = | 749 const char kStabilityChildProcessCrashCount[] = |
| 750 "user_experience_metrics.stability.child_process_crash_count"; | 750 "user_experience_metrics.stability.child_process_crash_count"; |
| 751 | 751 |
| 752 // On Chrome OS, total number of non-Chrome user process crashes |
| 753 // since the last report. |
| 754 const char kStabilityOtherUserCrashCount[] = |
| 755 "user_experience_metrics.stability.other_user_crash_count"; |
| 756 |
| 757 // On Chrome OS, total number of kernel crashes since the last report. |
| 758 const char kStabilityKernelCrashCount[] = |
| 759 "user_experience_metrics.stability.kernel_crash_count"; |
| 760 |
| 761 // On Chrome OS, total number of unclean system shutdowns since the |
| 762 // last report. |
| 763 const char kStabilitySystemUncleanShutdownCount[] = |
| 764 "user_experience_metrics.stability.system_unclean_shutdowns"; |
| 765 |
| 752 // Number of times the browser has been able to register crash reporting. | 766 // Number of times the browser has been able to register crash reporting. |
| 753 const char kStabilityBreakpadRegistrationSuccess[] = | 767 const char kStabilityBreakpadRegistrationSuccess[] = |
| 754 "user_experience_metrics.stability.breakpad_registration_ok"; | 768 "user_experience_metrics.stability.breakpad_registration_ok"; |
| 755 | 769 |
| 756 // Number of times the browser has failed to register crash reporting. | 770 // Number of times the browser has failed to register crash reporting. |
| 757 const char kStabilityBreakpadRegistrationFail[] = | 771 const char kStabilityBreakpadRegistrationFail[] = |
| 758 "user_experience_metrics.stability.breakpad_registration_fail"; | 772 "user_experience_metrics.stability.breakpad_registration_fail"; |
| 759 | 773 |
| 760 // Number of times the browser has been run under a debugger. | 774 // Number of times the browser has been run under a debugger. |
| 761 const char kStabilityDebuggerPresent[] = | 775 const char kStabilityDebuggerPresent[] = |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1169 const char kManagedDefaultPluginsSetting[] = | 1183 const char kManagedDefaultPluginsSetting[] = |
| 1170 "profile.managed_default_content_settings.plugins"; | 1184 "profile.managed_default_content_settings.plugins"; |
| 1171 const char kManagedDefaultPopupsSetting[] = | 1185 const char kManagedDefaultPopupsSetting[] = |
| 1172 "profile.managed_default_content_settings.popups"; | 1186 "profile.managed_default_content_settings.popups"; |
| 1173 | 1187 |
| 1174 // Dictionary for storing the set of known background pages (keys are extension | 1188 // Dictionary for storing the set of known background pages (keys are extension |
| 1175 // IDs of background page owners, value is a boolean that is true if the user | 1189 // IDs of background page owners, value is a boolean that is true if the user |
| 1176 // needs to acknowledge this page. | 1190 // needs to acknowledge this page. |
| 1177 const char kKnownBackgroundPages[] = "background_pages.known"; | 1191 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1178 } // namespace prefs | 1192 } // namespace prefs |
| OLD | NEW |