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

Unified Diff: third_party/WebKit/Source/core/css/CSSGridTemplateAreasValue.cpp

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: All windows error are Resolved now. Created 3 years, 9 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/css/CSSGridTemplateAreasValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSGridTemplateAreasValue.cpp b/third_party/WebKit/Source/core/css/CSSGridTemplateAreasValue.cpp
index bbe7da5a1b194d4721d0198862d9ca6f87f206b9..e5d91db2464afd657d706b120bb75442a5183706 100644
--- a/third_party/WebKit/Source/core/css/CSSGridTemplateAreasValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSGridTemplateAreasValue.cpp
@@ -42,8 +42,8 @@ CSSGridTemplateAreasValue::CSSGridTemplateAreasValue(
m_gridAreaMap(gridAreaMap),
m_rowCount(rowCount),
m_columnCount(columnCount) {
- ASSERT(m_rowCount);
- ASSERT(m_columnCount);
+ DCHECK(m_rowCount);
+ DCHECK(m_columnCount);
}
static String stringForPosition(const NamedGridAreaMap& gridAreaMap,
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h ('k') | third_party/WebKit/Source/core/css/CSSGroupingRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698