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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.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/LineLayoutSVGTextPath.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h b/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
index 986a864bb9e2e6f648e233f4cc0e3276df1ff533..458679a0c5b29ecb36bba2e9550e8aad95c09501 100644
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutSVGTextPath.h
@@ -18,7 +18,7 @@ class LineLayoutSVGTextPath : public LineLayoutSVGInline {
explicit LineLayoutSVGTextPath(const LineLayoutItem& item)
: LineLayoutSVGInline(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isSVGTextPath());
+ SECURITY_DCHECK(!item || item.isSVGTextPath());
}
explicit LineLayoutSVGTextPath(std::nullptr_t)

Powered by Google App Engine
This is Rietveld 408576698