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

Unified Diff: third_party/WebKit/Source/core/layout/api/LayoutBlockItem.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/LayoutBlockItem.h
diff --git a/third_party/WebKit/Source/core/layout/api/LayoutBlockItem.h b/third_party/WebKit/Source/core/layout/api/LayoutBlockItem.h
index 0c51626c1c67f7b76916a012964ac7c175cd3fb7..79af5ffad5783581b24d3606d9297f082067cd75 100644
--- a/third_party/WebKit/Source/core/layout/api/LayoutBlockItem.h
+++ b/third_party/WebKit/Source/core/layout/api/LayoutBlockItem.h
@@ -17,7 +17,7 @@ class LayoutBlockItem : public LayoutBoxItem {
: LayoutBoxItem(layoutBlock) {}
explicit LayoutBlockItem(const LayoutBoxItem& item) : LayoutBoxItem(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isLayoutBlock());
+ SECURITY_DCHECK(!item || item.isLayoutBlock());
}
explicit LayoutBlockItem(std::nullptr_t) : LayoutBoxItem(nullptr) {}
« no previous file with comments | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698