| Index: ui/gl/angle_platform_impl.cc
|
| diff --git a/ui/gl/angle_platform_impl.cc b/ui/gl/angle_platform_impl.cc
|
| index 3e6f4903b6e920e3173e537c6c97d8e01f728779..b1a31ed8ccc468a3418f447982dbfaa90ef319b9 100644
|
| --- a/ui/gl/angle_platform_impl.cc
|
| +++ b/ui/gl/angle_platform_impl.cc
|
| @@ -98,7 +98,6 @@ void ANGLEPlatformImpl_histogramCustomCounts(PlatformMethods* platform,
|
| base::HistogramBase* counter = base::Histogram::FactoryGet(
|
| name, min, max, bucket_count,
|
| base::HistogramBase::kUmaTargetedHistogramFlag);
|
| - DCHECK_EQ(name, counter->histogram_name());
|
| counter->Add(sample);
|
| }
|
|
|
| @@ -111,7 +110,6 @@ void ANGLEPlatformImpl_histogramEnumeration(PlatformMethods* platform,
|
| base::HistogramBase* counter = base::LinearHistogram::FactoryGet(
|
| name, 1, boundary_value, boundary_value + 1,
|
| base::HistogramBase::kUmaTargetedHistogramFlag);
|
| - DCHECK_EQ(name, counter->histogram_name());
|
| counter->Add(sample);
|
| }
|
|
|
|
|