Index: third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h |
diff --git a/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h b/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h |
index caaba4260d9cab6513eed462549ae7789fcbcf83..9d1a20089fd37b158fb345da0a16280a684611e5 100644 |
--- a/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h |
+++ b/third_party/WebKit/Source/core/html/parser/InputStreamPreprocessor.h |
@@ -87,7 +87,7 @@ class InputStreamPreprocessor { |
private: |
bool processNextInputCharacter(SegmentedString& source) { |
ProcessAgain: |
- ASSERT(m_nextInputCharacter == source.currentChar()); |
+ DCHECK_EQ(m_nextInputCharacter, source.currentChar()); |
if (m_nextInputCharacter == '\n' && m_skipNextNewLine) { |
m_skipNextNewLine = false; |