Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: third_party/WebKit/Source/core/dom/DOMURLUtils.cpp

Issue 2401523002: Replace ASSERT family with DCHECK and so on in core/dom/. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMURL.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DOMURLUtils.cpp
diff --git a/third_party/WebKit/Source/core/dom/DOMURLUtils.cpp b/third_party/WebKit/Source/core/dom/DOMURLUtils.cpp
index e27c6e40432142fc5626dbba1dadbca9a9cd717a..853ff19442489a864f3fd279b750d70b992c88f0 100644
--- a/third_party/WebKit/Source/core/dom/DOMURLUtils.cpp
+++ b/third_party/WebKit/Source/core/dom/DOMURLUtils.cpp
@@ -115,7 +115,7 @@ void DOMURLUtils::setSearch(const String& value) {
}
void DOMURLUtils::setSearchInternal(const String& value) {
- ASSERT(!m_isInUpdate);
+ DCHECK(!m_isInUpdate);
KURL kurl = url();
if (!kurl.isValid())
return;
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMURL.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698