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

Unified Diff: third_party/WebKit/Source/core/css/CSSSelector.cpp

Issue 2522043003: Replace ASSERT_NOT_REACHED -> NOTREACHED (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSSelector.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSSelector.cpp b/third_party/WebKit/Source/core/css/CSSSelector.cpp
index 54081a9f0dd469f35aff879b381a16a7a1374f67..411ebcc568ebc3b888f80cca36fedd81e0b21828 100644
--- a/third_party/WebKit/Source/core/css/CSSSelector.cpp
+++ b/third_party/WebKit/Source/core/css/CSSSelector.cpp
@@ -134,7 +134,7 @@ inline unsigned CSSSelector::specificityForOneSelector() const {
case Unknown:
return 0;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return 0;
}
@@ -158,7 +158,7 @@ unsigned CSSSelector::specificityForPage() const {
s += 1;
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
break;
default:
@@ -271,7 +271,7 @@ PseudoId CSSSelector::pseudoId(PseudoType type) {
return PseudoIdNone;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return PseudoIdNone;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698