diff options
author | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-06 18:41:15 +0000 |
---|---|---|
committer | grt@chromium.org <grt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-06 18:41:15 +0000 |
commit | 92c79d30b2d16cadd448c7cfd702f3ebd4e10bf5 (patch) | |
tree | 07ae765fb06593881920926459c339830d2fb339 /chrome_frame/chrome_frame_activex_base.h | |
parent | 1baff834aaaadbcc16c340542da9dd0c8c1ad724 (diff) | |
download | chromium_src-92c79d30b2d16cadd448c7cfd702f3ebd4e10bf5.zip chromium_src-92c79d30b2d16cadd448c7cfd702f3ebd4e10bf5.tar.gz chromium_src-92c79d30b2d16cadd448c7cfd702f3ebd4e10bf5.tar.bz2 |
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
Diffstat (limited to 'chrome_frame/chrome_frame_activex_base.h')
-rw-r--r-- | chrome_frame/chrome_frame_activex_base.h | 10 |
1 files changed, 5 insertions, 5 deletions
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; |