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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutListMarker.h

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/layout/api/LineLayoutListMarker.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutListMarker.h b/third_party/WebKit/Source/core/layout/api/LineLayoutListMarker.h
index d9a4633a14a8deed1ece0ddc62193518e3ba548a..5f1779f21990abdf7e1d01362a9b1f91cf3bc73d 100644
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutListMarker.h
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutListMarker.h
@@ -17,7 +17,7 @@ class LineLayoutListMarker : public LineLayoutBox {
explicit LineLayoutListMarker(const LineLayoutItem& item)
: LineLayoutBox(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isListMarker());
+ SECURITY_DCHECK(!item || item.isListMarker());
}
explicit LineLayoutListMarker(std::nullptr_t) : LineLayoutBox(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698