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

Unified Diff: third_party/WebKit/Source/core/dom/NodeRareData.h

Issue 2727843003: Replace RELEASE_ASSERT with CHECK in core/{dom,editing,html} (Closed)
Patch Set: . Created 3 years, 10 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/dom/NodeRareData.h
diff --git a/third_party/WebKit/Source/core/dom/NodeRareData.h b/third_party/WebKit/Source/core/dom/NodeRareData.h
index 7df8d9d527a52700368f3c764284f1502f327d7a..109c10a70261a86698f90c0e94eed3614ed04277 100644
--- a/third_party/WebKit/Source/core/dom/NodeRareData.h
+++ b/third_party/WebKit/Source/core/dom/NodeRareData.h
@@ -143,7 +143,7 @@ class NodeRareData : public GarbageCollectedFinalized<NodeRareData>,
}
void setRestyleFlag(DynamicRestyleFlags mask) {
m_restyleFlags |= mask;
- RELEASE_ASSERT(m_restyleFlags);
+ CHECK(m_restyleFlags);
}
bool hasRestyleFlags() const { return m_restyleFlags; }
void clearRestyleFlags() { m_restyleFlags = 0; }

Powered by Google App Engine
This is Rietveld 408576698