| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index d976ca272e23f36c979a94a6eccfa84bbcef9068..4bb755a2ae1e580e13b9044d648765ae4c364a3f 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -579,17 +579,6 @@ blink::WebWaitableEvent* BlinkPlatformImpl::waitMultipleEvents(
|
| return web_events[idx];
|
| }
|
|
|
| -void BlinkPlatformImpl::histogramCustomCounts(
|
| - const char* name, int sample, int min, int max, int bucket_count) {
|
| - // Copied from histogram macro, but without the static variable caching
|
| - // the histogram because name is dynamic.
|
| - base::HistogramBase* counter =
|
| - base::Histogram::FactoryGet(name, min, max, bucket_count,
|
| - base::HistogramBase::kUmaTargetedHistogramFlag);
|
| - DCHECK_EQ(name, counter->histogram_name());
|
| - counter->Add(sample);
|
| -}
|
| -
|
| void BlinkPlatformImpl::histogramEnumeration(
|
| const char* name, int sample, int boundary_value) {
|
| // Copied from histogram macro, but without the static variable caching
|
|
|