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

Unified Diff: third_party/WebKit/Source/core/xml/parser/MarkupTokenizerInlines.h

Issue 2274573004: Replace ASSERT*() with DCHECK*() in core/xml/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/xml/parser/MarkupTokenizerInlines.h
diff --git a/third_party/WebKit/Source/core/xml/parser/MarkupTokenizerInlines.h b/third_party/WebKit/Source/core/xml/parser/MarkupTokenizerInlines.h
index c48a0e89f8741b3de160ee06cb1e1250deee0ed3..3b7cf8900f131d1629014f329a0d12475d5d3f42 100644
--- a/third_party/WebKit/Source/core/xml/parser/MarkupTokenizerInlines.h
+++ b/third_party/WebKit/Source/core/xml/parser/MarkupTokenizerInlines.h
@@ -56,7 +56,7 @@ inline void advanceStringAndASSERT(SegmentedString& source, const char* expected
#endif
#define BEGIN_STATE(prefix, stateName) case prefix::stateName: stateName:
-#define END_STATE() ASSERT_NOT_REACHED(); break;
+#define END_STATE() NOTREACHED(); break;
// We use this macro when the HTML5 spec says "reconsume the current input
// character in the <mumble> state."

Powered by Google App Engine
This is Rietveld 408576698