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

Unified Diff: third_party/WebKit/Source/core/css/CSSCustomIdentValue.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/CSSCustomIdentValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSCustomIdentValue.cpp b/third_party/WebKit/Source/core/css/CSSCustomIdentValue.cpp
index f6ad4aff9cc2e7f3b47b59f18b6f8417762b13c3..087dfc3837c2824df8266c4827cc1e5c9281509c 100644
--- a/third_party/WebKit/Source/core/css/CSSCustomIdentValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSCustomIdentValue.cpp
@@ -17,7 +17,7 @@ CSSCustomIdentValue::CSSCustomIdentValue(const AtomicString& str)
CSSCustomIdentValue::CSSCustomIdentValue(CSSPropertyID id)
: CSSValue(CustomIdentClass), m_string(), m_propertyId(id) {
- ASSERT(isKnownPropertyID());
+ DCHECK(isKnownPropertyID());
}
String CSSCustomIdentValue::customCSSText() const {

Powered by Google App Engine
This is Rietveld 408576698