From 92c79d30b2d16cadd448c7cfd702f3ebd4e10bf5 Mon Sep 17 00:00:00 2001 From: "grt@chromium.org" Date: Wed, 6 Apr 2011 18:41:15 +0000 Subject: Remove locked histogram macros since jar@chromium.org made the base macros threadsafe in http://crrev.com/80412. BUG=none TEST=metrics should work as before Review URL: http://codereview.chromium.org/6800008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80668 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/chrome_frame_activex_base.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chrome_frame/chrome_frame_activex_base.h') diff --git a/chrome_frame/chrome_frame_activex_base.h b/chrome_frame/chrome_frame_activex_base.h index 820d038..bac9723 100644 --- a/chrome_frame/chrome_frame_activex_base.h +++ b/chrome_frame/chrome_frame_activex_base.h @@ -252,11 +252,11 @@ END_MSG_MAP() // Used to perform one time tasks. if (g_first_launch_by_process_) { g_first_launch_by_process_ = false; - THREAD_SAFE_UMA_HISTOGRAM_CUSTOM_COUNTS("ChromeFrame.IEVersion", - GetIEVersion(), - IE_INVALID, - IE_9, - IE_9 + 1); + UMA_HISTOGRAM_CUSTOM_COUNTS("ChromeFrame.IEVersion", + GetIEVersion(), + IE_INVALID, + IE_9, + IE_9 + 1); } return S_OK; -- cgit v1.1