Index: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp |
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp |
index 102b7c5db5c4d445627c61c85600b57be5a7fe32..ad9c3f403b3ac27ca145f2a7843347340a045794 100644 |
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp |
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp |
@@ -67,7 +67,7 @@ void XMLHttpRequestProgressEventThrottle::DeferredEvent::clear() |
Event* XMLHttpRequestProgressEventThrottle::DeferredEvent::take() |
{ |
- ASSERT(m_isSet); |
+ DCHECK(m_isSet); |
Event* event = ProgressEvent::create(EventTypeNames::progress, m_lengthComputable, m_loaded, m_total); |
clear(); |
@@ -79,7 +79,7 @@ XMLHttpRequestProgressEventThrottle::XMLHttpRequestProgressEventThrottle(XMLHttp |
, m_target(target) |
, m_hasDispatchedProgressProgressEvent(false) |
{ |
- ASSERT(target); |
+ DCHECK(target); |
} |
XMLHttpRequestProgressEventThrottle::~XMLHttpRequestProgressEventThrottle() |