| Index: third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
|
| index a6f24bf3fb6f785683315cc0ac7218c7d0ec9078..f7a71f993d71727dbfe8c1324dd2a310b29ecdce 100644
|
| --- a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
|
| +++ b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
|
| @@ -64,7 +64,7 @@ void HTMLImportTreeRoot::stateDidChange()
|
|
|
| void HTMLImportTreeRoot::scheduleRecalcState()
|
| {
|
| - ASSERT(m_document);
|
| + DCHECK(m_document);
|
| if (m_recalcTimer.isActive() || !m_document->isActive())
|
| return;
|
| m_recalcTimer.startOneShot(0, BLINK_FROM_HERE);
|
| @@ -89,7 +89,7 @@ HTMLImportChild* HTMLImportTreeRoot::find(const KURL& url) const
|
|
|
| void HTMLImportTreeRoot::recalcTimerFired(TimerBase*)
|
| {
|
| - ASSERT(m_document);
|
| + DCHECK(m_document);
|
| HTMLImport::recalcTreeState(this);
|
| }
|
|
|
|
|