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

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

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: Fixed the Windows Failure 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/SelectorChecker.h
diff --git a/third_party/WebKit/Source/core/css/SelectorChecker.h b/third_party/WebKit/Source/core/css/SelectorChecker.h
index 915c6e2d2d59ed458c371914b1c9692bd6dbbc50..8e8f6a1edbd2ad674d19a14c479cafc9560ff0ab 100644
--- a/third_party/WebKit/Source/core/css/SelectorChecker.h
+++ b/third_party/WebKit/Source/core/css/SelectorChecker.h
@@ -140,7 +140,7 @@ class SelectorChecker {
bool match(const SelectorCheckingContext& context,
MatchResult& result) const {
- ASSERT(context.selector);
+ DCHECK(context.selector);
return matchSelector(context, result) == SelectorMatches;
}

Powered by Google App Engine
This is Rietveld 408576698