From e73c0197733c2b354d4f1c30153e64951593602a Mon Sep 17 00:00:00 2001 From: "cpu@google.com" Date: Wed, 13 Aug 2008 00:18:24 +0000 Subject: Add a couple of metrics to help us quantify two cases that can prevent us to get crash reports. - Added env_vars to exe project instead of keep duplicating the strings. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@766 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/pref_names.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'chrome/common/pref_names.cc') diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index ea7ec00..123cdee 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -325,6 +325,22 @@ const wchar_t kStabilityPluginStats[] = const wchar_t kStabilityRendererHangCount[] = L"user_experience_metrics.stability.renderer_hang_count"; +// Number of times the browser has been able to register crash reporting. +const wchar_t kStabilityBreakpadRegistrationSuccess[] = + L"user_experience_metrics.stability.breakpad_registration_ok"; + +// Number of times the browser has failed to register crash reporting. +const wchar_t kStabilityBreakpadRegistrationFail[] = + L"user_experience_metrics.stability.breakpad_registration_fail"; + +// Number of times the browser has been run under a debugger. +const wchar_t kStabilityDebuggerPresent[] = + L"user_experience_metrics.stability.debugger_present"; + +// Number of times the browser has not been run under a debugger. +const wchar_t kStabilityDebuggerNotPresent[] = + L"user_experience_metrics.stability.debugger_not_present"; + // The keys below are used for the dictionaries in the // kStabilityPluginStats list. const wchar_t kStabilityPluginPath[] = L"path"; -- cgit v1.1