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

Unified Diff: third_party/WebKit/Source/core/layout/api/LayoutTextItem.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/LayoutTextItem.h
diff --git a/third_party/WebKit/Source/core/layout/api/LayoutTextItem.h b/third_party/WebKit/Source/core/layout/api/LayoutTextItem.h
index c9d15edbf3de8ae9b0d55d432112eee3a9ed9765..59266b53078e3ccf6463c23ddaba34db804f4158 100644
--- a/third_party/WebKit/Source/core/layout/api/LayoutTextItem.h
+++ b/third_party/WebKit/Source/core/layout/api/LayoutTextItem.h
@@ -18,7 +18,7 @@ class LayoutTextItem : public LayoutItem {
explicit LayoutTextItem(LayoutText* layoutText) : LayoutItem(layoutText) {}
explicit LayoutTextItem(const LayoutItem& item) : LayoutItem(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isText());
+ SECURITY_DCHECK(!item || item.isText());
}
explicit LayoutTextItem(std::nullptr_t) : LayoutItem(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698