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

Unified Diff: third_party/WebKit/Source/core/dom/PseudoElement.cpp

Issue 2401523002: Replace ASSERT family with DCHECK and so on in core/dom/. (Closed)
Patch Set: Created 4 years, 2 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/PseudoElement.cpp
diff --git a/third_party/WebKit/Source/core/dom/PseudoElement.cpp b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
index dd3e64c67cef9c9e0643f0591d626a6f999ffae3..d82156feae41c10d020e28babff95bf24fc0b828 100644
--- a/third_party/WebKit/Source/core/dom/PseudoElement.cpp
+++ b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
@@ -61,7 +61,8 @@ const QualifiedName& pseudoElementTagName(PseudoId pseudoId) {
(nullAtom, "<pseudo:first-letter>", nullAtom));
return firstLetter;
}
- default: { ASSERT_NOT_REACHED(); }
+ default:
+ NOTREACHED();
}
DEFINE_STATIC_LOCAL(QualifiedName, name, (nullAtom, "<pseudo>", nullAtom));
return name;

Powered by Google App Engine
This is Rietveld 408576698