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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp

Issue 2458003002: Remove ASSERT_WITH_SECURITY_IMPLICATION. (Closed)
Patch Set: Minor formatting fix 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/html/parser/HTMLDocumentParser.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
index b06f1a3626107c7e89c5a6eb89320b9066e73ab7..0648e0fa870ad91310f6fddc61b1b60f37ceb925 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
@@ -481,8 +481,8 @@ size_t HTMLDocumentParser::processTokenizedChunkFromBackgroundParser(
popChunk.get(), TRACE_EVENT_FLAG_FLOW_IN);
AutoReset<bool> hasLineNumber(&m_isParsingAtLineNumber, true);
- ASSERT_WITH_SECURITY_IMPLICATION(m_pumpSpeculationsSessionNestingLevel == 1);
- ASSERT_WITH_SECURITY_IMPLICATION(!inPumpSession());
+ SECURITY_DCHECK(m_pumpSpeculationsSessionNestingLevel == 1);
+ SECURITY_DCHECK(!inPumpSession());
ASSERT(!isParsingFragment());
ASSERT(!isWaitingForScripts());
ASSERT(!isStopped());

Powered by Google App Engine
This is Rietveld 408576698