summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-28 08:01:22 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-28 08:01:22 +0000
commit2daa668e144fa1c3429896c18723d73862fd4913 (patch)
tree7d35c386cd829d4e99ee9425ff1493260ee9095d /base
parent2753b39e0c2e83d3b497ebadc2d720f12b74db40 (diff)
downloadchromium_src-2daa668e144fa1c3429896c18723d73862fd4913.zip
chromium_src-2daa668e144fa1c3429896c18723d73862fd4913.tar.gz
chromium_src-2daa668e144fa1c3429896c18723d73862fd4913.tar.bz2
Fix Mac tree bustage
Remove overly aggressive DCHECK() which was tripping in HISTOGRAM_ENUMERATION on the mac. BUG=31206 TBR=ramana.tenneti Review URL: http://codereview.chromium.org/519006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35296 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/histogram.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/base/histogram.h b/base/histogram.h
index 79de748..fa998f2 100644
--- a/base/histogram.h
+++ b/base/histogram.h
@@ -180,7 +180,6 @@
UMA_HISTOGRAM_ENUMERATION(name, under_one_hundred, 101)
#define UMA_HISTOGRAM_ENUMERATION(name, sample, boundary_value) do { \
- DCHECK(sample < boundary_value); \
static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
name, 1, boundary_value, boundary_value + 1, \
Histogram::kUmaTargetedHistogramFlag); \