| Index: third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| diff --git a/third_party/WebKit/Source/platform/testing/HistogramTester.cpp b/third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| index bcec68c9b99fbb1b8f024bc55c8e03e50d1e8928..3b08e837e413e83b6790a3483720e0aa4893bcb4 100644
|
| --- a/third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| @@ -33,4 +33,10 @@ void HistogramTester::ExpectTotalCount(const std::string& name,
|
| histogram_tester_->ExpectTotalCount(name, count);
|
| }
|
|
|
| +base::HistogramBase::Count HistogramTester::GetBucketCount(
|
| + const std::string& name,
|
| + base::HistogramBase::Sample sample) const {
|
| + return histogram_tester_->GetBucketCount(name, sample);
|
| +}
|
| +
|
| } // namespace blink
|
|
|