summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-28 14:51:43 +0000
committergab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-28 14:51:43 +0000
commit065b657bd16bca7115b20774a154808184848045 (patch)
tree2ba75cb73a174a3b68884a698f49c6a8d0b88095
parent31116c566faf09567877c13fd790e07c9f9d44c5 (diff)
downloadchromium_src-065b657bd16bca7115b20774a154808184848045.zip
chromium_src-065b657bd16bca7115b20774a154808184848045.tar.gz
chromium_src-065b657bd16bca7115b20774a154808184848045.tar.bz2
Remove NotifyOtherProcessOrCreate.Result histogram which never worked.
This histogram was added a while back, but it never worked as we only get reports for PROCESS_NONE; all other reports are dropped in the early return post rendez-vous and never make it to the server... BUG=347727 Review URL: https://codereview.chromium.org/177173008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254112 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/chrome_browser_main.cc3
-rw-r--r--chrome/browser/process_singleton.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index 25d9010..4708916 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -1175,9 +1175,6 @@ int ChromeBrowserMainParts::PreMainMessageLoopRunImpl() {
// 20 seconds to respond. Note that this needs to be done before we attempt
// to read the profile.
notify_result_ = process_singleton_->NotifyOtherProcessOrCreate();
- UMA_HISTOGRAM_ENUMERATION("NotifyOtherProcessOrCreate.Result",
- notify_result_,
- ProcessSingleton::NUM_NOTIFY_RESULTS);
switch (notify_result_) {
case ProcessSingleton::PROCESS_NONE:
// No process already running, fall through to starting a new one.
diff --git a/chrome/browser/process_singleton.h b/chrome/browser/process_singleton.h
index 94d45d1..f0e6b72 100644
--- a/chrome/browser/process_singleton.h
+++ b/chrome/browser/process_singleton.h
@@ -52,7 +52,6 @@ class ProcessSingleton : public base::NonThreadSafe {
PROCESS_NOTIFIED,
PROFILE_IN_USE,
LOCK_ERROR,
- NUM_NOTIFY_RESULTS,
};
// Implement this callback to handle notifications from other processes. The