| 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 03e4b30a097b5362e3e05d72be8a19e6d2532a88..0e0fbb63d63b925f765d62c786807b732295ec83 100644
|
| --- a/third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| +++ b/third_party/WebKit/Source/platform/testing/HistogramTester.cpp
|
| @@ -18,4 +18,9 @@ void HistogramTester::expectUniqueSample(const std::string& name, base::Histogra
|
| m_histogramTester->ExpectUniqueSample(name, sample, count);
|
| }
|
|
|
| +void HistogramTester::expectTotalCount(const std::string& name, base::HistogramBase::Count count) const
|
| +{
|
| + m_histogramTester->ExpectTotalCount(name, count);
|
| +}
|
| +
|
| } // namespace blink
|
|
|