| Index: third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLeakDetector.cpp b/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| index f3440dc60c5f75c8af9b2b9371c3ffe421eb2d39..c70ff48b596ab37608e3025912870939c67fc628 100644
|
| --- a/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| @@ -59,7 +59,7 @@ public:
|
| , m_delayedReportTimer(this, &WebLeakDetectorImpl::delayedReport)
|
| , m_numberOfGCNeeded(0)
|
| {
|
| - ASSERT(m_client);
|
| + DCHECK(m_client);
|
| }
|
|
|
| ~WebLeakDetectorImpl() override {}
|
| @@ -139,7 +139,7 @@ void WebLeakDetectorImpl::delayedGCAndReport(Timer<WebLeakDetectorImpl>*)
|
|
|
| void WebLeakDetectorImpl::delayedReport(Timer<WebLeakDetectorImpl>*)
|
| {
|
| - ASSERT(m_client);
|
| + DCHECK(m_client);
|
|
|
| WebLeakDetectorClient::Result result;
|
| result.numberOfLiveAudioNodes = InstanceCounters::counterValue(InstanceCounters::AudioHandlerCounter);
|
|
|