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

Unified Diff: third_party/WebKit/Source/core/layout/api/LayoutMediaItem.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/LayoutMediaItem.h
diff --git a/third_party/WebKit/Source/core/layout/api/LayoutMediaItem.h b/third_party/WebKit/Source/core/layout/api/LayoutMediaItem.h
index 2e56dedd0a58037230ed7c21c06b345062eb45c7..ce71062f1dc79f5092ae158914c60c46dae5ebf8 100644
--- a/third_party/WebKit/Source/core/layout/api/LayoutMediaItem.h
+++ b/third_party/WebKit/Source/core/layout/api/LayoutMediaItem.h
@@ -16,7 +16,7 @@ class LayoutMediaItem : public LayoutImageItem {
: LayoutImageItem(layoutMedia) {}
explicit LayoutMediaItem(const LayoutItem& item) : LayoutImageItem(item) {
- ASSERT_WITH_SECURITY_IMPLICATION(!item || item.isMedia());
+ SECURITY_DCHECK(!item || item.isMedia());
}
explicit LayoutMediaItem(std::nullptr_t) : LayoutImageItem(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698