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

Unified Diff: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h

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/CSSGridAutoRepeatValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
index d2cf256fe4734a03c42380aad2df8845bb6fb6c5..6fcabe26a7da11a69967b8a4f56f6e226d6517a7 100644
--- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
+++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
@@ -39,7 +39,7 @@ class CSSGridAutoRepeatValue : public CSSValueList {
private:
CSSGridAutoRepeatValue(CSSValueID id)
: CSSValueList(GridAutoRepeatClass, SpaceSeparator), m_autoRepeatID(id) {
- ASSERT(id == CSSValueAutoFill || id == CSSValueAutoFit);
+ DCHECK(id == CSSValueAutoFill || id == CSSValueAutoFit);
}
const CSSValueID m_autoRepeatID;

Powered by Google App Engine
This is Rietveld 408576698