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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportState.h

Issue 2264483002: Replace ASSERT()s with DCHECK*() in core/html/imports/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: third_party/WebKit/Source/core/html/imports/HTMLImportState.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportState.h b/third_party/WebKit/Source/core/html/imports/HTMLImportState.h
index 5f5b498e065507c43fab1ce83299cf9ba232ace2..d69fce24bb054b91a82632d18cbf0f4b8b3bad28 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportState.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportState.h
@@ -70,7 +70,7 @@ private:
inline HTMLImportState::Value HTMLImportState::checkedValue() const
{
- ASSERT(isValid());
+ DCHECK(isValid());
return m_value;
}

Powered by Google App Engine
This is Rietveld 408576698