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

Unified Diff: third_party/WebKit/Source/core/css/SelectorFilter.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/SelectorFilter.h
diff --git a/third_party/WebKit/Source/core/css/SelectorFilter.h b/third_party/WebKit/Source/core/css/SelectorFilter.h
index be05f67c62223afde7ff33206d203878fccee0cd..2cad4ddf1dac7caf0164a85ad1b9859d669f1cee 100644
--- a/third_party/WebKit/Source/core/css/SelectorFilter.h
+++ b/third_party/WebKit/Source/core/css/SelectorFilter.h
@@ -91,7 +91,7 @@ class SelectorFilter {
template <unsigned maximumIdentifierCount>
inline bool SelectorFilter::fastRejectSelector(
const unsigned* identifierHashes) const {
- ASSERT(m_ancestorIdentifierFilter);
+ DCHECK(m_ancestorIdentifierFilter);
for (unsigned n = 0; n < maximumIdentifierCount && identifierHashes[n]; ++n) {
if (!m_ancestorIdentifierFilter->mayContain(identifierHashes[n]))
return true;
« no previous file with comments | « third_party/WebKit/Source/core/css/SelectorChecker.h ('k') | third_party/WebKit/Source/core/css/SelectorFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698